:root {
    --orange: #ff671f;
    --orange-light: #ff8e53;
    --blue-light: #81c4ff;
    --blue-dark: #2455ea;
    --navy: #0d2c6e;
    --ink: #1b2440;
    --gray: #6b7785;
    --paper: #f6f9fd;
    --line: #e4ebf7;
}

/* ---------- Global Resets & Typography ---------- */
html, body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.zm-footer *, .zm-footer *::before, .zm-footer *::after,
.zm-landing *, .zm-landing *::before, .zm-landing *::after {
    box-sizing: border-box;
}

.zm-footer h2, .zm-footer h3, .zm-footer h4,
.zm-landing h1, .zm-landing h2, .zm-landing h3, .zm-landing h4 {
    margin: 0;
}

.zm-footer p, .zm-landing p {
    margin: 0;
}

.zm-footer ul, .zm-landing ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zm-footer img, .zm-landing img, .zm-landing svg {
    display: block;
}

.zm-footer .container, .zm-landing .container {
    max-width: 1180px;
    position: relative;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
.zm-footer a:focus-visible, .zm-footer button:focus-visible, .zm-footer input:focus-visible {
    outline: 3px solid var(--blue-light);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Force Font Awesome's icon font even if a parent stylesheet resets font-family */
.zm-footer i[class*="fa-"], .zm-back-to-top i[class*="fa-"] {
    font-family: "Font Awesome 5 Brands", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal;
    line-height: 1;
}

/* ---------- Components: ZM FOOTER ---------- */
.zm-footer {
    position: relative;
    background: linear-gradient(180deg, var(--navy) 0%, #081c4d 100%);
    color: rgba(255, 255, 255, .65);
    overflow: hidden;
    min-height: 300px;
}

.zm-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 90px);
    pointer-events: none;
}

.zm-footer h2, .zm-footer h3, .zm-footer h4 {
    color: #fff;
}

.zm-footer a {
    text-decoration: none;
    color: inherit;
}

.zm-footer .container {
    z-index: 1;
}

/* Top: brand + footer nav */
.zm-footer__top {
    padding: 64px 0 40px;
}

@media (max-width: 767px) {
    .zm-footer__top {
        padding: 48px 0 32px;
    }
}

.zm-footer__top-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.zm-footer__brand {
    flex: 1 1 360px;
    max-width: 460px;
}

.zm-logo {
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.5px;
    display: inline-flex;
}

.zm-logo span {
    color: var(--orange);
}

.zm-footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-top: 16px;
    max-width: 380px;
}

.zm-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.zm-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue-light);
    background: rgba(129, 196, 255, .1);
    border: 1px solid rgba(129, 196, 255, .25);
    padding: 7px 12px;
    border-radius: 999px;
}

.zm-footer__badge i {
    font-size: 13px;
}

.zm-footer__nav {
    flex: 0 0 auto;
}

.zm-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.zm-footer__nav a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    transition: color .2s ease;
}

.zm-footer__nav a:hover {
    color: var(--orange);
}

@media (max-width: 767px) {
    .zm-footer__nav ul {
        gap: 14px 24px;
    }
}

/* Divider (road-line style) */
.zm-footer__divider {
    height: 1px;
    margin: 0;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .14) 0 10px, transparent 10px 22px);
    position: relative;
    z-index: 1;
}

/* Middle: widget grid */
.zm-footer__middle {
    padding: 48px 0 56px;
}

@media (max-width: 767px) {
    .zm-footer__middle {
        padding: 40px 0 48px;
    }
}

.zm-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 991px) {
    .zm-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 28px;
    }
}

@media (max-width: 575px) {
    .zm-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.zm-footer__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 18px;
}

/* Quick links */
.zm-footer__linklist li + li {
    margin-top: 6px;
}

.zm-footer__linklist a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    padding: 5px 0;
    transition: color .2s ease, gap .2s ease;
}

.zm-footer__linklist a i {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s ease, transform .2s ease;
    color: var(--orange);
}

.zm-footer__linklist a:hover {
    color: #fff;
}

.zm-footer__linklist a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact widget */
.zm-footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.zm-footer__contact:hover {
    border-color: var(--blue-light);
    background: rgba(129, 196, 255, .08);
    transform: translateY(-2px);
}

.zm-footer__contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.zm-footer__help-note, .zm-newsletter__note {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .55);
    margin-top: 14px;
}

/* Newsletter */
.zm-newsletter__field {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.zm-newsletter__field:focus-within {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 4px rgba(129, 196, 255, .15);
}

.zm-newsletter__field input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 13px 14px;
}

.zm-newsletter__field input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.zm-newsletter__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    font-size: 15px;
    transition: filter .2s ease, transform .2s ease;
}

.zm-newsletter__submit:hover {
    filter: brightness(1.08);
}

.zm-newsletter__submit:active {
    transform: scale(.94);
}

/* Social */
.zm-footer__social {
    display: flex;
    gap: 10px;
}

.zm-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.zm-social-btn:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 103, 31, .35);
}

.zm-footer__social-note {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .55);
    margin-top: 18px;
}

/* Bottom bar */
.zm-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
}

.zm-footer__bottom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.zm-footer__copy, .zm-footer__legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.zm-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.zm-footer__legal a {
    transition: color .2s ease;
}

.zm-footer__legal a:hover {
    color: #fff;
}

/* Back to top */
.zm-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 28px rgba(255, 103, 31, .4);
    transition: transform .25s ease, box-shadow .25s ease;
}

.zm-back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 36px rgba(255, 103, 31, .5);
}

.zm-back-to-top:active {
    transform: translateY(-1px) scale(.97);
}


/* ---------- Components: ZM LANDING ---------- */
.zm-landing {
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

.zm-landing a {
    text-decoration: none;
}

/* Layout helpers */
.zm-section {
    padding: 88px 0;
}

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

@media (max-width: 767px) {
    .zm-section {
        padding: 56px 0;
    }

    .zm-section--tight {
        padding: 40px 0;
    }
}

.zm-section-head {
    max-width: 640px;
}

.zm-section-head.text-center {
    margin: 0 auto;
}

.zm-section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.zm-section-title .accent {
    color: var(--blue-dark);
}

.zm-section-title .accent-orange {
    color: var(--orange);
}

.zm-section-lead {
    font-size: 16px;
    color: var(--gray);
    margin-top: 14px;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .zm-section-title {
        font-size: 25px;
    }
}

/* Buttons */
.zm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 30px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.zm-btn--primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
}

.zm-btn--primary:hover {
    color: #fff;
}

.zm-btn--primary:active {
}

.zm-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.zm-btn--ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

.zm-btn--block {
    width: 100%;
}

.zm-btn--invert {
    background: #fff;
    color: var(--orange);
}

.zm-btn--invert:hover {
    background: var(--ink);
    color: #fff;
}

/* Nav */
.zm-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.zm-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.zm-nav__inner .zm-logo {
    font-size: 20px;
}

.zm-nav__cta {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 8px;
}

/* Hero */
.zm-hero {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--blue-dark) 65%, #3a6ff5 100%);
    padding: 72px 0 110px;
    overflow: hidden;
}

.zm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 90px);
    pointer-events: none;
}

.zm-hero__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.zm-hero__content {
    flex: 1 1 480px;
}

.zm-hero__visual {
    flex: 1 1 380px;
    display: flex;
    justify-content: center;
    position: relative;
}

@media (max-width: 767px) {
    .zm-hero {
        padding: 40px 0 64px;
    }

    .zm-hero__row {
        gap: 36px;
    }
}

.zm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue-light);
    background: rgba(129, 196, 255, .12);
    border: 1px solid rgba(129, 196, 255, .35);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.zm-h1 {
    font-size: 48px;
    line-height: 1.14;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.zm-h1 .zm-highlight {
    color: var(--orange);
}

@media (max-width: 767px) {
    .zm-h1 {
        font-size: 32px;
    }
}

.zm-sub {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .78);
    max-width: 480px;
    margin-bottom: 32px;
}

.zm-hero__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
}

.zm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ddc84;
    animation: pulse 2s infinite;
    flex-shrink: 0;
    margin-top: 5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 220, 132, .55);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(61, 220, 132, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
    }
}

.zm-trust-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
    column-gap: 24px;
    margin-top: 32px;
}

.zm-trust-row li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.zm-trust-row svg {
    flex-shrink: 0;
}

/* Gauge card */
.zm-gauge-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 28px 24px;
    box-shadow: 0 24px 60px rgba(13, 44, 110, .35);
    width: 100%;
    max-width: 380px;
    text-align: center;
    position: relative;
}

.zm-gauge-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue-dark);
    background: rgba(129, 196, 255, .16);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.zm-gauge {
    width: 100%;
    height: auto;
}

.zm-gauge-readout {
    margin-top: 4px;
}

.zm-gauge-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--orange);
}

.zm-gauge-unit {
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
}

.zm-gauge-readout p {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 600;
}

.zm-photo-card {
    position: absolute;
    left: -16px;
    bottom: -28px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 14px 34px rgba(13, 44, 110, .28);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(-4deg);
    max-width: 230px;
}

@media (max-width: 991px) {
    .zm-photo-card {
        left: 6px;
        bottom: -22px;
    }
}

.zm-photo-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.zm-photo-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.zm-photo-card__meta {
    font-size: 11px;
    color: var(--gray);
    margin-top: 2px;
    font-weight: 600;
}

.zm-photo-card__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .06em;
    box-shadow: 0 6px 14px rgba(255, 103, 31, .4);
}

/* Live ticker */
.zm-ticker {
    background: var(--navy);
    overflow: hidden;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zm-ticker__track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    width: max-content;
    animation: ticker 36s linear infinite;
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
}

.zm-ticker__track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zm-tick-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3ddc84;
    flex-shrink: 0;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Benefits */
.zm-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.zm-benefit-card {
    flex: 1 1 250px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.zm-benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-light), var(--blue-dark));
}

.zm-benefit-card.is-orange::before {
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.zm-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(36, 85, 234, .12);
}

.zm-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(129, 196, 255, .16);
    margin-bottom: 18px;
}

.zm-benefit-card.is-orange .zm-benefit-icon {
    background: rgba(255, 103, 31, .12);
}

.zm-benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.zm-benefit-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

/* 3-step route */
.zm-steps {
    margin-top: 56px;
    position: relative;
}

.zm-steps__line {
    position: absolute;
    top: 34px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px);
    z-index: 0;
}

@media (max-width: 767px) {
    .zm-steps__line {
        display: none;
    }
}

.zm-steps__grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.zm-step {
    flex: 1 1 260px;
    text-align: center;
}

.zm-step__badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--blue-dark);
    color: var(--blue-dark);
    box-shadow: 0 8px 24px rgba(36, 85, 234, .15);
    position: relative;
}

.zm-step.is-orange .zm-step__badge {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 8px 24px rgba(255, 103, 31, .2);
}

.zm-step__num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zm-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.zm-step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

.zm-step__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-dark);
    background: rgba(129, 196, 255, .16);
    padding: 4px 10px;
    border-radius: 999px;
}

/* Mini form */
.zm-form-card {
    max-width: 640px;
    margin: 48px auto 0;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(36, 85, 234, .08);
}

@media (max-width: 767px) {
    .zm-form-card {
        padding: 28px 22px;
    }
}

.zm-form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.zm-form-group {
    flex: 1 1 200px;
}

.zm-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray);
    margin-bottom: 8px;
}

.zm-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.zm-input:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 4px rgba(36, 85, 234, .12);
    background: #fff;
}

.zm-form-submit {
    margin-top: 24px;
}

.zm-form-foot {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Final CTA */
.zm-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zm-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 90px);
}

.zm-cta__inner {
    position: relative;
    z-index: 1;
}

.zm-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    max-width: 680px;
    margin: 0 auto 16px;
}

.zm-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.zm-stat-row {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.zm-stat {
    text-align: center;
}

.zm-stat__value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.zm-stat__label {
    font-size: 12px;
    color: rgba(255, 255, 255, .88);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
}

/* ---------- Performance & Reduced Motion ---------- */
@keyframes zmFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.reveal {
    animation: zmFadeUp .7s ease both;
}

.reveal-d1 {
    animation-delay: .1s;
}

.reveal-d2 {
    animation-delay: .2s;
}

.reveal-d3 {
    animation-delay: .3s;
}

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

    .reveal {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .zm-footer * {
        transition: none !important;
        animation: none !important;
    }
}

.zmf-empty-wrapper {
    --orange: #ff671f;
    --orange-light: #ff8e53;
    --blue-light: #81c4ff;
    --blue-dark: #2455ea;
    --ink: #1b2440;
    --gray: #6b7785;
    --paper: #f6f9fd;
    --line: #e4ebf7;
    --success: #3ddc84;

    margin: 40px auto;
    max-width: 620px;
    width: 100%;
}

/* ============================================================
   CARD CONTAINER
   ============================================================ */
.zmf-empty-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 24px 54px rgba(36, 85, 234, 0.06);
    position: relative;
    overflow: hidden;
}

/* Subtle geometric background decoration */
.zmf-empty-card::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(129, 196, 255, 0.25), transparent 70%);
    pointer-events: none;
}

/* ============================================================
   ILLUSTRATION & ANIMATION
   ============================================================ */
.zmf-empty-illu {
    position: relative;
    width: 160px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zmf-illu-bg {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(36, 85, 234, 0.05);
    border-radius: 50%;
    z-index: 1;
    animation: zmfRadarPulse 2.5s infinite ease-in-out;
}

.zmf-empty-img {
    position: relative;
    z-index: 2;
    object-fit: contain;
    /* Soft floating effect */
    animation: zmfFloat 4s infinite ease-in-out;
}

@keyframes zmfRadarPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
        background: rgba(36, 85, 234, 0.05);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        background: rgba(255, 103, 31, 0.04);
    }
    100% {
        transform: scale(0.9);
        opacity: 0.3;
        background: rgba(36, 85, 234, 0.05);
    }
}

@keyframes zmfFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.zmf-empty-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.zmf-empty-subtitle {
    font-size: 14.5px;
    color: var(--gray);
    max-width: 460px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* ============================================================
   ACTIONS & BUTTONS (Inherited from Design System)
   ============================================================ */
.zmf-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.zmf-empty-actions .zm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14.5px;
    padding: 14px 24px;
    border-radius: 11px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    outline: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.zmf-empty-actions .zm-btn--primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 103, 31, 0.25);
}

.zmf-empty-actions .zm-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 103, 31, 0.35);
    color: #fff;
}

.zmf-empty-actions .zm-btn--secondary {
    background: var(--paper);
    color: var(--ink);
    border: 1.5px solid var(--line);
}

.zmf-empty-actions .zm-btn--secondary:hover {
    background: #fff;
    border-color: var(--blue-dark);
    color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(36, 85, 234, 0.05);
}

/* ============================================================
   FOOTER HELP ACCORD/CHIPS
   ============================================================ */
.zmf-empty-footer {
    border-top: 1px dashed var(--line);
    padding-top: 24px;
}

.zmf-footer-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.zmf-footer-label i {
    color: var(--orange);
}

.zmf-footer-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.zmf-footer-tags span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    background: var(--paper);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(228, 235, 247, 0.6);
}

@media (max-width: 480px) {
    .zmf-empty-actions .zm-btn {
        width: 100%;
    }

    .zmf-empty-card {
        padding: 35px 20px;
    }
}

/* ============================================================
                      FILTER FOOTER CONTAINER (Horizontal Flex Alignment)
                      ============================================================ */
.zmorda-filter-footer {
    --orange: #ff671f;
    --orange-light: #ff8e53;
    --ink: #1b2440;
    --gray: #6b7785;
    --paper: #f6f9fd;
    --line: #e4ebf7;

    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
}

/* Base Shared Button Styles */
.zmorda-filter-footer .zmorda-reset,
.zmorda-filter-footer .zmorda-apply {
    font-weight: 700;
    font-size: 14px;
    height: 46px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* ------------------------------------------------------------
   RESET BUTTON (Modern Neutral Icon-Style)
   ------------------------------------------------------------ */
.zmorda-filter-footer .zmorda-reset {
    background: var(--paper);
    color: var(--gray);
    border-color: var(--line);
    width: 46px;
    flex-shrink: 0;
}

.zmorda-filter-footer .zmorda-reset:hover {
    background: #fff;
    border-color: var(--gray);
    color: var(--ink);
    transform: translateY(-1.5px);
    box-shadow: 0 6px 16px rgba(13, 44, 110, 0.05);
}

.zmorda-filter-footer .zmorda-reset:active {
    transform: translateY(0);
}

/* ------------------------------------------------------------
   APPLY BUTTON (Signature Brand Gradient Accent)
   ------------------------------------------------------------ */
.zmorda-filter-footer .zmorda-apply {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    padding: 0 20px;
    flex: 1;
    box-shadow: 0 8px 24px rgba(255, 103, 31, 0.2);
}

.zmorda-filter-footer .zmorda-apply:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 12px 28px rgba(255, 103, 31, 0.32);
}

.zmorda-filter-footer .zmorda-apply:active {
    transform: translateY(0);
}



/* ============================================================
   PRODUCTION CSS — copy this whole block into Zmorda's stylesheet
============================================================ */
.zmf-credit-screen {
    --zmf-orange: #ff671f;
    --zmf-blue-dark: #2455ea;
    --zmf-blue-light: #81c4ff;
    --zmf-ink: #0d1b2e;
    --zmf-ink-soft: #5b6b85;
    --zmf-bg: #f3f7fd;
    --zmf-white: #ffffff;
    --zmf-line: #dbe5f7;
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--zmf-white);
    color: var(--zmf-ink);
    padding: 48px 24px 64px;
}

.zmf-credit-screen * {
    box-sizing: border-box;
}

.zmf-credit-screen .zmf-cs-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.zmf-credit-screen .zmf-cs-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--zmf-white);
    border: 1px solid var(--zmf-line);
    border-radius: 999px;
    padding: 7px 16px 7px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--zmf-ink-soft);
    margin-bottom: 18px;
    animation: zmf-fade-up .6s ease both;
}

.zmf-credit-screen .zmf-cs-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--zmf-orange);
    position: relative;
    flex-shrink: 0;
}

.zmf-credit-screen .zmf-cs-pill__dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--zmf-orange);
    opacity: .5;
    animation: zmf-ping 2s ease-out infinite;
}

.zmf-credit-screen .zmf-cs-hero {
    margin-bottom: 24px;
}

.zmf-credit-screen .zmf-cs-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--zmf-blue-dark);
    margin: 0 0 12px;
    animation: zmf-fade-up .6s ease .05s both;
}

.zmf-credit-screen .zmf-cs-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: .01em;
    margin: 0 0 12px;
    max-width: 680px;
    animation: zmf-fade-up .6s ease .1s both;
}

.zmf-credit-screen .zmf-cs-subtitle {
    font-size: 17px;
    line-height: 1.5;
    color: var(--zmf-ink-soft);
    max-width: 520px;
    margin: 0;
    animation: zmf-fade-up .6s ease .15s both;
}

.zmf-credit-screen .zmf-cs-steps {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    animation: zmf-fade-up .6s ease .2s both;
}

.zmf-credit-screen .zmf-cs-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.zmf-credit-screen .zmf-cs-step:not(:last-child)::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--zmf-line);
    margin: 0 14px;
}

.zmf-credit-screen .zmf-cs-step__num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--zmf-white);
    border: 1.5px solid var(--zmf-blue-dark);
    color: var(--zmf-blue-dark);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zmf-credit-screen .zmf-cs-step__label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--zmf-ink-soft);
    white-space: nowrap;
}

/* ============================================================
   Mode tabs (Simulateur standard / Simulateur par budget)
============================================================ */
.zmf-credit-screen .zmf-cs-tabs {
    display: inline-flex;
    gap: 4px;
    background: var(--zmf-bg);
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 20px;
}

.zmf-credit-screen .zmf-cs-tab {
    border: none;
    background: transparent;
    font-family: 'Inter';
    font-size: 13.5px;
    font-weight: 700;
    color: var(--zmf-ink-soft);
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.zmf-credit-screen .zmf-cs-tab.zmf-cs-tab--active {
    background: var(--zmf-white);
    color: var(--zmf-ink);
    box-shadow: 0 1px 2px rgba(13, 27, 46, .08);
}

.zmf-credit-screen .zmf-cs-tab:focus-visible {
    outline: 2px solid var(--zmf-blue-dark);
    outline-offset: 2px;
}

.zmf-credit-screen .zmf-cs-grid {
    display: grid;
    grid-template-columns:1.25fr 1fr;
    gap: 20px;
}

.zmf-credit-screen .zmf-cs-console {
    background: var(--zmf-white);
    border: 1px solid var(--zmf-line);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 1px 2px rgba(13, 27, 46, .04);
}

.zmf-credit-screen .zmf-cs-field__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.zmf-credit-screen .zmf-cs-field__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--zmf-ink-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.zmf-credit-screen .zmf-cs-field__label small {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.zmf-credit-screen .zmf-cs-field__value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 15px;
    color: var(--zmf-blue-dark);
}

.zmf-credit-screen .zmf-cs-field__input-row {
    position: relative;
    margin-bottom: 8px;
}

.zmf-credit-screen .zmf-cs-input {
    width: 100%;
    border: 1.5px solid var(--zmf-line);
    border-radius: 12px;
    padding: 13px 48px 13px 16px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--zmf-ink);
    background: var(--zmf-bg);
    transition: border-color .15s, background .15s;
}

.zmf-credit-screen .zmf-cs-input:focus {
    outline: none;
    border-color: var(--zmf-blue-dark);
    background: var(--zmf-white);
}

.zmf-credit-screen .zmf-cs-input__suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    font-weight: 700;
    color: var(--zmf-ink-soft);
}

.zmf-credit-screen .zmf-cs-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 4px;
    background: var(--zmf-line);
    outline: none;
    cursor: pointer;
}

.zmf-credit-screen .zmf-cs-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--zmf-white);
    border: 3px solid var(--zmf-blue-dark);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(13, 27, 46, .25);
}

.zmf-credit-screen .zmf-cs-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--zmf-white);
    border: 3px solid var(--zmf-blue-dark);
    cursor: pointer;
}

.zmf-credit-screen .zmf-cs-row {
    display: flex;
    gap: 14px;
}

.zmf-credit-screen .zmf-cs-field--compact {
    flex: 1;
    min-width: 0;
}

.zmf-credit-screen .zmf-cs-select {
    width: 100%;
    border: 1.5px solid var(--zmf-line);
    border-radius: 12px;
    padding: 12px 36px 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zmf-ink);
    background: var(--zmf-bg);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235b6b85' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px;
    cursor: pointer;
    margin-top: 6px;
}

.zmf-credit-screen .zmf-cs-select:focus {
    outline: none;
    border-color: var(--zmf-blue-dark);
}

.zmf-credit-screen .zmf-cs-rate-badge {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--zmf-bg);
    border: 1.5px solid var(--zmf-line);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--zmf-ink);
}

.zmf-credit-screen .zmf-cs-rate-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
}

.zmf-credit-screen .zmf-cs-cluster {
    background: radial-gradient(circle at 30% 0%, #16294a 0%, var(--zmf-ink) 60%);
    border-radius: 20px;
    padding: 28px 26px;
    color: var(--zmf-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zmf-credit-screen .zmf-cs-cluster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(129, 196, 255, .08), transparent 40%);
    pointer-events: none;
}

.zmf-credit-screen .zmf-cs-cluster__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
}

.zmf-credit-screen .zmf-cs-cluster__stat-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .55);
}

.zmf-credit-screen .zmf-cs-cluster__stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 15px;
}

.zmf-credit-screen .zmf-cs-cluster__stat--secondary {
    margin-top: 4px;
}

.zmf-credit-screen .zmf-cs-gauge {
    position: relative;
    width: 200px;
    height: 118px;
    margin: 14px 0 2px;
}

.zmf-credit-screen .zmf-cs-gauge__svg {
    width: 100%;
    height: 100%;
    display: block;
}

.zmf-credit-screen .zmf-cs-gauge__track {
    fill: none;
    stroke: rgba(255, 255, 255, .1);
    stroke-width: 14;
    stroke-linecap: round;
}

.zmf-credit-screen .zmf-cs-gauge__fill {
    fill: none;
    stroke-width: 14;
    stroke-linecap: round;
    stroke: url(#zmfCsGaugeGradient);
}

.zmf-credit-screen .zmf-cs-gauge__needle {
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 3px;
    height: 78px;
    background: linear-gradient(180deg, var(--zmf-orange), rgba(255, 103, 31, 0));
    transform-origin: bottom center;
    border-radius: 3px;
    margin-left: -1.5px;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.zmf-credit-screen .zmf-cs-gauge__hub {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--zmf-orange);
    transform: translate(-50%, 30%);
    box-shadow: 0 0 0 4px var(--zmf-ink), 0 0 12px rgba(255, 103, 31, .6);
}

.zmf-credit-screen .zmf-cs-readout {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 4px 0 14px;
}

.zmf-credit-screen .zmf-cs-readout__value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: clamp(30px, 4vw, 38px);
    letter-spacing: -.01em;
}

.zmf-credit-screen .zmf-cs-readout__unit {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
}

.zmf-credit-screen .zmf-cs-cta {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 16px 20px;
    background: var(--zmf-orange);
    color: var(--zmf-white);
    font-weight: 800;
    font-size: 15.5px;
    letter-spacing: .01em;
    cursor: pointer;
    margin-top: 6px;
    animation: zmf-pulse 2.6s ease-in-out infinite;
    transition: transform .15s;
}

.zmf-credit-screen .zmf-cs-cta:hover {
    transform: translateY(-1px);
}

.zmf-credit-screen .zmf-cs-cta:focus-visible {
    outline: 2px solid var(--zmf-blue-light);
    outline-offset: 3px;
}

.zmf-credit-screen .zmf-cs-cta__note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    margin: 8px 0 0;
    font-weight: 500;
}

.zmf-credit-screen .zmf-cs-trust {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.zmf-credit-screen .zmf-cs-trust__item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zmf-ink-soft);
}

.zmf-credit-screen .zmf-cs-trust__item svg {
    color: var(--zmf-blue-dark);
    flex-shrink: 0;
}

.zmf-credit-screen .zmf-cs-legal {
    font-size: 12px;
    line-height: 1.6;
    color: #9aa6bd;
    text-align: center;
    max-width: 680px;
    margin: 28px auto 0;
}

@keyframes zmf-fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zmf-ping {
    0% {
        transform: scale(1);
        opacity: .5;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes zmf-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 103, 31, .45);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(255, 103, 31, 0);
    }
}

@media (max-width: 900px) {
    .zmf-credit-screen {
        padding: 40px 18px 48px;
    }

    .zmf-credit-screen .zmf-cs-grid {
        grid-template-columns:1fr;
        gap: 16px;
    }

    .zmf-credit-screen .zmf-cs-console {
        padding: 22px;
    }

    .zmf-credit-screen .zmf-cs-cluster {
        padding: 24px 20px;
    }
}

@media (max-width: 640px) {
    .zmf-credit-screen .zmf-cs-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .zmf-credit-screen .zmf-cs-step:not(:last-child)::after {
        display: none;
    }

    .zmf-credit-screen .zmf-cs-row {
        flex-direction: column;
    }

    .zmf-credit-screen .zmf-cs-trust {
        gap: 18px;
        justify-content: flex-start;
    }

    .zmf-credit-screen .zmf-cs-tabs {
        width: 100%;
    }

    .zmf-credit-screen .zmf-cs-tab {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zmf-credit-screen * {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================================
   Car Summary Widget (Contextual Mode side panel)
============================================================ */
.zmf-credit-screen .zmf-cs-grid--contextual {
    grid-template-columns:0.85fr 1.25fr 1fr;
}

.zmf-credit-screen .zmf-cs-summary {
    background: var(--zmf-white);
    border: 1px solid var(--zmf-line);
    border-radius: 20px;
    padding: 20px;
    align-self: start;
    position: sticky;
    top: 24px;
    box-shadow: 0 1px 2px rgba(13, 27, 46, .04);
}

.zmf-credit-screen .zmf-cs-summary__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--zmf-blue-dark);
    background: var(--zmf-bg);
    border-radius: 999px;
    padding: 5px 11px;
    margin-bottom: 14px;
}

.zmf-credit-screen .zmf-cs-summary__media {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--zmf-bg);
    margin-bottom: 14px;
}

.zmf-credit-screen .zmf-cs-summary__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zmf-credit-screen .zmf-cs-summary__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--zmf-ink);
    margin: 0 0 4px;
    line-height: 1.3;
}

.zmf-credit-screen .zmf-cs-summary__sub {
    font-size: 12.5px;
    color: var(--zmf-ink-soft);
    margin: 0 0 14px;
}

.zmf-credit-screen .zmf-cs-summary__price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid var(--zmf-line);
    padding-top: 12px;
}

.zmf-credit-screen .zmf-cs-summary__price-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--zmf-ink-soft);
}

.zmf-credit-screen .zmf-cs-summary__price-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 18px;
    color: var(--zmf-ink);
}

.zmf-credit-screen .zmf-cs-input--locked {
    background: var(--zmf-bg);
    color: var(--zmf-ink-soft);
    cursor: not-allowed;
    padding-right: 44px;
}

.zmf-credit-screen .zmf-cs-input--locked:focus {
    border-color: var(--zmf-line);
    background: var(--zmf-bg);
}

.zmf-credit-screen .zmf-cs-field__lock {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zmf-ink-soft);
    display: flex;
    pointer-events: none;
}

.zmf-credit-screen .zmf-cs-field__lock svg {
    width: 15px;
    height: 15px;
}

.zmf-credit-screen .zmf-cs-slider--locked {
    opacity: .45;
    pointer-events: none;
}

.zmf-credit-screen .zmf-cs-field__note {
    font-size: 12px;
    color: var(--zmf-ink-soft);
    margin: 6px 0 0;
}

@media (max-width: 1100px) {
    .zmf-credit-screen .zmf-cs-grid--contextual {
        grid-template-columns:1fr 1fr;
    }

    .zmf-credit-screen .zmf-cs-summary {
        grid-column: 1 / -1;
        position: static;
    }
}

@media (max-width: 900px) {
    .zmf-credit-screen .zmf-cs-grid--contextual {
        grid-template-columns:1fr;
    }

    .zmf-credit-screen .zmf-cs-summary {
        grid-column: auto;
    }
}

/* ============================================================
   Reverse Budget Calculator (Calculateur par Budget Mensuel)
============================================================ */
.zmf-credit-screen .zmf-cs-reverse {
    background: var(--zmf-white);
    border: 1px solid var(--zmf-line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 1px 2px rgba(13, 27, 46, .04);
}

.zmf-credit-screen .zmf-cs-reverse__intro {
    font-size: 14.5px;
    color: var(--zmf-ink-soft);
    line-height: 1.55;
    margin: 0 0 22px;
    max-width: 640px;
}

.zmf-credit-screen .zmf-cs-reverse__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

.zmf-credit-screen .zmf-cs-reverse__result {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--zmf-bg);
    border-radius: 16px;
    padding: 20px 24px;
    flex-wrap: wrap;
}

.zmf-credit-screen .zmf-cs-reverse__result-figure {
    flex: 1;
    min-width: 200px;
}

.zmf-credit-screen .zmf-cs-reverse__result-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--zmf-ink-soft);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 4px;
}

.zmf-credit-screen .zmf-cs-reverse__result-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--zmf-blue-dark);
    margin: 0;
}

.zmf-credit-screen .zmf-cs-reverse__result-note {
    font-size: 12.5px;
    color: var(--zmf-ink-soft);
    margin: 4px 0 0;
}

.zmf-credit-screen .zmf-cs-reverse__cta {
    border: none;
    border-radius: 12px;
    padding: 13px 22px;
    background: var(--zmf-orange);
    color: var(--zmf-white);
    font-weight: 800;
    font-size: 14.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s;
}

.zmf-credit-screen .zmf-cs-reverse__cta:hover {
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .zmf-credit-screen .zmf-cs-reverse__grid {
        grid-template-columns:1fr;
    }
}

/* ============================================================
   Eligible Vehicles & Matched Cars — horizontal scroller
============================================================ */
.zmf-credit-screen .zmf-cs-eligible {
    margin-top: 48px;
}

.zmf-credit-screen .zmf-cs-eligible__head {
    margin-bottom: 20px;
}

.zmf-credit-screen .zmf-cs-eligible__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--zmf-blue-dark);
    margin: 0 0 8px;
}

.zmf-credit-screen .zmf-cs-eligible__title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.05;
    margin: 0 0 6px;
}

.zmf-credit-screen .zmf-cs-eligible__subtitle {
    font-size: 14.5px;
    color: var(--zmf-ink-soft);
    max-width: 560px;
    margin: 0;
}

.zmf-credit-screen .zmf-cs-eligible__loading {
    font-size: 13.5px;
    color: var(--zmf-ink-soft);
    margin: 0 0 12px;
}

.zmf-credit-screen .zmf-cs-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scroll-snap-type: x proximate;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--zmf-line) transparent;
}

.zmf-credit-screen .zmf-cs-scroller::-webkit-scrollbar {
    height: 6px;
}

.zmf-credit-screen .zmf-cs-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.zmf-credit-screen .zmf-cs-scroller::-webkit-scrollbar-thumb {
    background: var(--zmf-line);
    border-radius: 6px;
}

.zmf-credit-screen .zmf-cs-eligible__empty {
    text-align: center;
    font-size: 14.5px;
    color: var(--zmf-ink-soft);
    padding: 32px;
    background: var(--zmf-bg);
    border-radius: 16px;
}

.zmf-credit-screen .zmf-cs-car {
    background: var(--zmf-white);
    border: 1px solid var(--zmf-line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--zmf-ink);
    transition: border-color .15s, transform .15s;
    flex: 0 0 230px;
    width: 230px;
    scroll-snap-align: start;
}

.zmf-credit-screen .zmf-cs-car:hover {
    border-color: var(--zmf-blue-dark);
    transform: translateY(-2px);
}

.zmf-credit-screen .zmf-cs-car__media {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--zmf-bg);
    position: relative;
    overflow: hidden;
}

.zmf-credit-screen .zmf-cs-car__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zmf-credit-screen .zmf-cs-car__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--zmf-orange);
    color: var(--zmf-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 10px;
}

.zmf-credit-screen .zmf-cs-car__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.zmf-credit-screen .zmf-cs-car__title {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.zmf-credit-screen .zmf-cs-car__meta {
    font-size: 12px;
    color: var(--zmf-ink-soft);
    margin: 0;
}

.zmf-credit-screen .zmf-cs-car__footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: auto;
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 4px;
}

.zmf-credit-screen .zmf-cs-car__price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 14.5px;
    color: var(--zmf-blue-dark);
}

.zmf-credit-screen .zmf-cs-car__monthly {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--zmf-ink-soft);
}
