/* =============================================================
   MECHLEAN Home Page — Custom Styles
   Loaded AFTER style.css to override where needed.
   Scope: home page only (.mechlean-page wrapper class on <body>).
   ============================================================= */

/* ---------- ACCESSIBILITY: SKIP LINK ---------- */
.mechlean-page .ml-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: #143E88;
    color: #ffffff;
    padding: 12px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-decoration: none;
}

.mechlean-page .ml-skip-link:focus {
    left: 12px;
    top: 12px;
}

/* ---------- DESIGN TOKENS ---------- */
.mechlean-page {
    --ml-navy: #143E88;
    --ml-ink: #1c1917;
    --ml-text: #57534e;
    --ml-muted: #78716c;
    --ml-bg: #fafaf9;
    --ml-border: #e7e5e4;
    --ml-accent: #166534;
    --ml-accent-bg: #f0fdf4;
    --ml-neg: #b91c1c;
    --ml-neg-bg: #fef2f2;
    --ml-pos-bg: #f0f9ff;
}

/* ---------- TYPOGRAPHY (scoped to home only) ---------- */
.mechlean-page h1,
.mechlean-page h2,
.mechlean-page h3,
.mechlean-page h4,
.mechlean-page p {
    color: var(--ml-ink);
}

.mechlean-page .ml-display {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: var(--ml-ink);
    line-height: 1.2;
}

.mechlean-page .ml-display i {
    color: var(--ml-accent);
    font-style: italic;
}

.mechlean-page .ml-eyebrow {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ml-navy);
    margin-bottom: 12px;
    display: block;
}

.mechlean-page .ml-body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ml-text);
}

/* ---------- BUTTONS ---------- */
.mechlean-page .ml-btn {
    display: inline-block;
    background: var(--ml-navy);
    color: #ffffff !important;
    padding: 12px 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    border: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.mechlean-page .ml-btn:hover {
    background: #0f2f6e;
    transform: translateY(-1px);
}

.mechlean-page .ml-btn-link {
    display: inline-block;
    color: var(--ml-navy) !important;
    padding: 12px 0 12px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-decoration: underline !important;
}

.mechlean-page .ml-btn-link:hover {
    color: #0f2f6e !important;
}

/* ---------- SECTION PADDING ---------- */
.mechlean-page .ml-section {
    padding: 80px 0;
}

@media (max-width: 991px) {
    .mechlean-page .ml-section { padding: 56px 0; }
}

@media (max-width: 767px) {
    .mechlean-page .ml-section { padding: 40px 0; }
}

/* ---------- BLOCK 1: HERO ---------- */
.mechlean-page .ml-hero {
    background: linear-gradient(120deg, #ffffff 60%, #f1f5f9 100%);
    border-bottom: 1px solid var(--ml-border);
    overflow: hidden;
    position: relative;
}

.mechlean-page .ml-hero .carousel-inner,
.mechlean-page .ml-hero .item {
    min-height: 600px;
}

/* Override Bootstrap's container width for the hero so the image has room to breathe */
.mechlean-page .ml-hero .container.ml-hero-container {
    max-width: 1340px;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    min-height: 600px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.mechlean-page .ml-hero-text {
    flex: 1 1 420px;
    min-width: 0;
    max-width: 500px;
    padding: 12px 0;
}

.mechlean-page .ml-hero-container-text-only {
    justify-content: center;
}

.mechlean-page .ml-hero-text-wide {
    flex: 0 1 860px;
    max-width: 860px;
    text-align: center;
}

.mechlean-page .ml-hero-text-wide .ml-hero-rule {
    margin-left: auto;
    margin-right: auto;
}

.mechlean-page .ml-hero-text-wide .ml-hero-sub,
.mechlean-page .ml-hero-text-wide .ml-readiness-note {
    margin-left: auto;
    margin-right: auto;
}

.mechlean-page .ml-hero-text-wide .ml-hero-ctas {
    justify-content: center;
}

.mechlean-page .ml-hero-visual {
    flex: 1 1 560px;
    min-width: 0;
    max-width: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mechlean-page .ml-hero-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Placeholder shown only if image fails to load */
.mechlean-page .ml-hero-visual-fallback {
    display: none;
    width: 100%;
    aspect-ratio: 5 / 4;
    background: repeating-linear-gradient(45deg, #f1f5f9, #f1f5f9 12px, #fafaf9 12px, #fafaf9 24px);
    border: 1px dashed #cbd5e1;
    border-radius: 4px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px;
    text-transform: uppercase;
}

.mechlean-page .ml-hero-visual-fallback i {
    font-size: 36px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.mechlean-page .ml-hero-visual.ml-hero-visual-placeholder .ml-hero-visual-fallback {
    display: flex;
}

.mechlean-page .ml-hero-h {
    font-size: 46px;
    margin: 0 0 0;
    letter-spacing: -0.5px;
}

.mechlean-page .ml-hero-product {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 58px;
    color: var(--ml-navy);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .mechlean-page .ml-hero-product { font-size: 46px; }
}

@media (max-width: 767px) {
    .mechlean-page .ml-hero-product { font-size: 36px; margin-bottom: 8px; }
}

.mechlean-page .ml-hero-rule {
    display: block;
    width: 64px;
    height: 2px;
    background: var(--ml-navy);
    margin: 20px 0 18px;
}

.mechlean-page .ml-hero-sub {
    margin: 0 0 24px;
    max-width: 500px;
    font-size: 16px;
    line-height: 1.6;
}

.mechlean-page .ml-readiness-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 540px;
    margin: -4px 0 22px;
    padding: 12px 14px;
    background: var(--ml-accent-bg);
    border-left: 3px solid var(--ml-accent);
    color: var(--ml-text);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.mechlean-page .ml-readiness-note strong {
    color: var(--ml-accent);
    font-weight: 700;
}

.mechlean-page .ml-readiness-note span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-left: 10px;
    border-radius: 50%;
    background: #86a68f;
    vertical-align: middle;
}

.mechlean-page .ml-hero-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Progress-bar indicators (override Bootstrap's default .carousel-indicators dots) */
.mechlean-page .ml-hero .carousel-indicators.ml-hero-indicators {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: left;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.mechlean-page .ml-hero .carousel-indicators.ml-hero-indicators li {
    width: 48px;
    height: 2px;
    border: none;
    border-radius: 0;
    background: #d6d3d1;
    margin: 0;
    text-indent: 0;
    cursor: pointer;
    transition: background 0.3s ease, height 0.3s ease;
}

.mechlean-page .ml-hero .carousel-indicators.ml-hero-indicators li.active {
    width: 48px;
    height: 3px;
    margin: 0;
    background: var(--ml-navy);
}

/* Tablet */
@media (max-width: 991px) {
    .mechlean-page .ml-hero-h { font-size: 36px; }
    .mechlean-page .ml-hero .ml-hero-container { gap: 32px; min-height: 540px; }
    .mechlean-page .ml-hero .carousel-inner,
    .mechlean-page .ml-hero .item { min-height: 540px; }
    .mechlean-page .ml-hero-text { max-width: 380px; }
    .mechlean-page .ml-hero-visual { max-width: 480px; }
}

/* Mobile — hide hero visual, text takes full width */
@media (max-width: 767px) {
    .mechlean-page .ml-hero-h { font-size: 30px; }
    .mechlean-page .ml-hero .ml-hero-container {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .mechlean-page .ml-hero-text { padding: 56px 0 76px; max-width: 100%; flex: 1 1 100%; }
    .mechlean-page .ml-hero-visual { display: none; }
    .mechlean-page .ml-hero-sub { font-size: 15px; }
    .mechlean-page .ml-hero-ctas { flex-direction: column; align-items: stretch; gap: 4px; }
    .mechlean-page .ml-hero .ml-btn { text-align: center; }
    .mechlean-page .ml-hero .ml-btn-link { padding-left: 0; text-align: center; }
}

/* ---------- BLOCK 2: INTRO + STATS ---------- */
.mechlean-page .ml-intro { background: #ffffff; }

.mechlean-page .ml-intro-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.mechlean-page .ml-intro-text { padding-right: 40px; }

.mechlean-page .ml-intro-h {
    font-size: 32px;
    margin: 0 0 18px;
}

.mechlean-page .ml-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mechlean-page .ml-stat {
    padding: 18px 22px;
    border-left: 3px solid var(--ml-navy);
    background: var(--ml-bg);
}

.mechlean-page .ml-stat b {
    display: block;
    font-family: Georgia, serif;
    font-size: 36px;
    color: var(--ml-navy);
    line-height: 1;
    margin-bottom: 6px;
}

.mechlean-page .ml-stat span {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: var(--ml-text);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .mechlean-page .ml-intro-h { font-size: 24px; }
    .mechlean-page .ml-intro-text { padding-right: 0; margin-bottom: 28px; }
    .mechlean-page .ml-stat b { font-size: 28px; }
}

/* ---------- SECTION HEAD (shared by Blocks 3-6) ---------- */
.mechlean-page .ml-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.mechlean-page .ml-section-head h2 {
    font-family: Georgia, serif;
    font-size: 36px;
    margin: 0 0 12px;
    color: var(--ml-ink);
}

.mechlean-page .ml-section-head h2 i { color: var(--ml-accent); font-style: italic; }
.mechlean-page .ml-section-head h2 i.ml-accent-red { color: #991b1b; }
.mechlean-page .ml-section-head h2 i.ml-accent-green { color: var(--ml-accent); }

/* Inline logo replacing FULCRUM word in headings.
   The logo PNG has a descender (the blue check below the letters),
   so we shift it down ~0.4em so the FULCRUM letters' baseline
   aligns with the text baseline of "The" and "Platform". */
.mechlean-page .ml-inline-logo {
    height: 1.6em;
    width: auto;
    vertical-align: -0.2em;
    margin: 0 8px;
    display: inline-block;
}

@media (max-width: 767px) {
    .mechlean-page .ml-inline-logo { height: 1.4em; vertical-align: -0.18em; }
}

.mechlean-page .ml-section-sub {
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .mechlean-page .ml-section-head h2 { font-size: 26px; }
    .mechlean-page .ml-section-head { margin-bottom: 32px; }
}

/* ---------- BLOCK 3: PRODUCT ECOSYSTEM ---------- */
.mechlean-page .ml-products { background: #ffffff; }

.mechlean-page .ml-products-row { display: flex; flex-wrap: wrap; }

.mechlean-page .ml-flagship-col,
.mechlean-page .ml-companions-col {
    display: flex;
    flex-direction: column;
}

.mechlean-page .ml-flagship {
    display: block;
    background: var(--ml-navy);
    color: #ffffff !important;
    padding: 36px 36px 32px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.mechlean-page .ml-flagship:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 62, 136, 0.18);
}

.mechlean-page .ml-flagship-tag {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 16px;
}

.mechlean-page .ml-flagship-name {
    font-family: Georgia, serif;
    font-size: 32px;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 400;
}

.mechlean-page .ml-flagship-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
    opacity: 0.92;
    color: #ffffff;
}

.mechlean-page .ml-flagship-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    opacity: 0.92;
}

.mechlean-page .ml-flagship-feats li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: #ffffff;
}

.mechlean-page .ml-flagship-feats li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
}

.mechlean-page .ml-flagship-cta {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    width: 100%;
    color: #ffffff;
}

.mechlean-page .ml-companions-col {
    padding-left: 20px;
    gap: 14px;
}

.mechlean-page .ml-companion {
    display: block;
    background: #ffffff;
    border: 1px solid var(--ml-border);
    padding: 22px 24px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    flex: 1;
}

.mechlean-page .ml-companion:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border-color: var(--ml-navy);
}

.mechlean-page .ml-companion h4 {
    font-family: Georgia, serif;
    font-size: 19px;
    color: var(--ml-navy);
    margin: 0 0 8px;
    font-weight: 500;
}

.mechlean-page .ml-companion p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ml-text);
    margin: 0 0 10px;
}

.mechlean-page .ml-companion-cta {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--ml-navy);
}

@media (max-width: 991px) {
    .mechlean-page .ml-companions-col { padding-left: 15px; }
}

@media (max-width: 767px) {
    .mechlean-page .ml-flagship-name { font-size: 24px; }
    .mechlean-page .ml-flagship { padding: 24px; margin-bottom: 14px; }
    .mechlean-page .ml-companions-col { padding-left: 15px; }
}

/* ---------- BLOCK 4: PAIN POINTS ---------- */
.mechlean-page .ml-pain { background: var(--ml-bg); }

.mechlean-page .ml-pain-row { display: flex; flex-wrap: wrap; }

.mechlean-page .ml-pain-col {
    padding: 32px 28px;
    height: 100%;
}

.mechlean-page .ml-pain-neg {
    background: var(--ml-neg-bg);
    border-left: 3px solid var(--ml-neg);
}

.mechlean-page .ml-pain-pos {
    background: var(--ml-accent-bg);
    border-left: 3px solid var(--ml-accent);
}

.mechlean-page .ml-pain-col h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin: 0 0 18px;
    font-weight: 500;
}

.mechlean-page .ml-pain-neg h3 { color: var(--ml-neg); }
.mechlean-page .ml-pain-pos h3 { color: var(--ml-accent); }

.mechlean-page .ml-pain-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mechlean-page .ml-pain-col li {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--ml-text);
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    line-height: 1.5;
}

.mechlean-page .ml-pain-col li:last-child { border-bottom: none; }

@media (max-width: 767px) {
    .mechlean-page .ml-pain-col { padding: 24px 20px; margin-bottom: 14px; }
    .mechlean-page .ml-pain-col h3 { font-size: 19px; }
}

/* ---------- BLOCK 5: WHY CHOOSE MECHLEAN ---------- */
.mechlean-page .ml-why { background: #ffffff; }

.mechlean-page .ml-why-row { display: flex; flex-wrap: wrap; }

.mechlean-page .ml-why-card {
    padding: 24px 24px;
    border-top: 2px solid var(--ml-navy);
    border-left: 1px solid var(--ml-border);
    border-right: 1px solid var(--ml-border);
    border-bottom: 1px solid var(--ml-border);
    background: #ffffff;
    margin-bottom: 18px;
    height: calc(100% - 18px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mechlean-page .ml-why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.mechlean-page .ml-why-card h4 {
    font-family: Georgia, serif;
    font-size: 18px;
    color: var(--ml-navy);
    margin: 0 0 8px;
    font-weight: 500;
}

.mechlean-page .ml-why-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ml-text);
    margin: 0;
}

/* ---------- BLOCK 6: CUSTOMER JOURNEY ---------- */
.mechlean-page .ml-journey { background: var(--ml-bg); }

.mechlean-page .ml-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 920px;
    margin: 0 auto;
    gap: 4px;
}

.mechlean-page .ml-step {
    flex: 0 0 auto;
    text-align: center;
    min-width: 80px;
}

.mechlean-page .ml-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ml-navy);
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.mechlean-page .ml-step-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: var(--ml-text);
    line-height: 1.4;
}

.mechlean-page .ml-step-line {
    flex: 1;
    height: 1px;
    background: #d6d3d1;
    margin-top: 22px;
    min-width: 16px;
}

/* Mobile: horizontal scroll */
@media (max-width: 767px) {
    .mechlean-page .ml-stepper {
        overflow-x: auto;
        padding-bottom: 12px;
        justify-content: flex-start;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .mechlean-page .ml-step { min-width: 72px; }
    .mechlean-page .ml-step-num { width: 36px; height: 36px; font-size: 15px; }
    .mechlean-page .ml-step-label { font-size: 11px; }
    .mechlean-page .ml-step-line { min-width: 24px; margin-top: 18px; }
}

/* ---------- BLOCK 7: FINAL CTA ---------- */
.mechlean-page .ml-final-cta {
    background: var(--ml-navy);
    padding: 72px 0;
}

.mechlean-page .ml-cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.mechlean-page .ml-cta-h {
    font-family: Georgia, serif;
    font-size: 32px;
    color: #ffffff;
    margin: 0 0 14px;
    font-weight: 400;
    line-height: 1.25;
}

.mechlean-page .ml-cta-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #cbd5e1;
    margin: 0 0 28px;
    line-height: 1.6;
}

.mechlean-page .ml-cta-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mechlean-page .ml-btn-inverse {
    background: #ffffff;
    color: var(--ml-navy) !important;
    font-weight: 600;
    padding: 14px 28px;
}

.mechlean-page .ml-btn-inverse:hover {
    background: #f1f5f9;
}

.mechlean-page .ml-cta-secondary {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

@media (max-width: 767px) {
    .mechlean-page .ml-cta-h { font-size: 22px; }
    .mechlean-page .ml-final-cta { padding: 48px 0; }
    .mechlean-page .ml-cta-actions { flex-direction: column; gap: 12px; }
}

/* =================================================================
   HEADER (top bar + navbar) — Premium B2B Consulting style
   ================================================================= */
.mechlean-page .ml-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.mechlean-page .ml-topbar {
    background: #1c1917;
    color: #cbd5e1;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.mechlean-page .ml-topbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.mechlean-page .ml-topbar a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mechlean-page .ml-topbar a:hover { color: #ffffff; }

.mechlean-page .ml-topbar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mechlean-page .ml-topbar-contact i { margin-right: 4px; opacity: 0.7; }

.mechlean-page .ml-topbar-sep { color: #475569; }

.mechlean-page .ml-topbar-location {
    color: #94a3b8;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.mechlean-page .ml-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--ml-border);
}

.mechlean-page .ml-navbar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 15px;
    flex-wrap: wrap;
    gap: 16px;
}

.mechlean-page .ml-navbar-brand {
    display: inline-block;
    line-height: 0;
}

.mechlean-page .ml-navbar-brand img {
    height: 52px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.mechlean-page .ml-navbar-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ml-border);
    color: var(--ml-navy);
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
}

/* Override Bootstrap's default .collapse { display:none } on desktop */
.mechlean-page .ml-navbar-collapse.collapse {
    display: block;
}

.mechlean-page .ml-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 26px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.mechlean-page .ml-menu > li {
    position: relative;
}

.mechlean-page .ml-menu > li > a {
    color: var(--ml-text);
    text-decoration: none;
    padding: 8px 0;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.mechlean-page .ml-menu > li > a:hover {
    color: var(--ml-navy);
}

.mechlean-page .ml-menu > li.active > a {
    color: var(--ml-navy);
    font-weight: 500;
    border-bottom-color: var(--ml-navy);
}

.mechlean-page .ml-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    opacity: 0.7;
}

/* Dropdown menus */
.mechlean-page .ml-menu .ml-dropdown {
    background: #ffffff;
    border: 1px solid var(--ml-border);
    border-top: 2px solid var(--ml-navy);
    border-radius: 0;
    padding: 8px 0;
    margin-top: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    min-width: 240px;
    font-family: 'Roboto', sans-serif;
}

.mechlean-page .ml-menu .ml-dropdown > li > a {
    color: var(--ml-text);
    padding: 8px 18px;
    font-size: 13px;
    line-height: 1.5;
    display: block;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.mechlean-page .ml-menu .ml-dropdown > li > a:hover {
    background: var(--ml-bg);
    color: var(--ml-navy);
}

/* Nav CTA button */
.mechlean-page .ml-menu .ml-menu-cta a {
    background: var(--ml-navy);
    color: #ffffff !important;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.mechlean-page .ml-menu .ml-menu-cta a:hover {
    background: #0f2f6e;
    transform: translateY(-1px);
}

/* Mobile nav */
@media (max-width: 991px) {
    .mechlean-page .ml-navbar-toggle { display: inline-block; }
    .mechlean-page .ml-navbar-collapse.collapse {
        flex-basis: 100%;
        display: none;
    }
    .mechlean-page .ml-navbar-collapse.collapse.in,
    .mechlean-page .ml-navbar-collapse.collapsing {
        display: block;
    }
    .mechlean-page .ml-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 0;
        border-top: 1px solid var(--ml-border);
        margin-top: 16px;
    }
    .mechlean-page .ml-menu > li {
        border-bottom: 1px solid var(--ml-border);
    }
    .mechlean-page .ml-menu > li > a {
        padding: 14px 4px;
        border: none;
    }
    .mechlean-page .ml-menu > li.active > a {
        border-bottom: none;
    }
    .mechlean-page .ml-menu .ml-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--ml-border);
        margin: 0 0 8px 8px;
        padding: 4px 0;
        min-width: 0;
    }
    .mechlean-page .ml-menu .ml-menu-cta { margin-top: 8px; }
    .mechlean-page .ml-menu .ml-menu-cta a {
        display: block;
        text-align: center;
    }
    .mechlean-page .ml-topbar-row { justify-content: center; text-align: center; }
    .mechlean-page .ml-topbar-location { display: none; }
}

@media (max-width: 575px) {
    .mechlean-page .ml-topbar-contact { gap: 6px; }
    .mechlean-page .ml-topbar-sep { display: none; }
    .mechlean-page .ml-topbar-contact { flex-direction: column; }
}

/* =================================================================
   FOOTER — Premium B2B Consulting style
   ================================================================= */
.mechlean-page .ml-footer {
    background: #0f172a;
    color: #cbd5e1;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 56px 0 0;
}

.mechlean-page .ml-footer .container { padding: 0 24px; }

.mechlean-page .ml-footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid #1e293b;
}

.mechlean-page .ml-footer-brand .ml-footer-logo {
    font-family: Georgia, serif;
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mechlean-page .ml-footer-brand p {
    color: #94a3b8;
    line-height: 1.65;
    max-width: 280px;
    font-size: 13px;
    margin: 0 0 18px;
}

.mechlean-page .ml-footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.mechlean-page .ml-footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #334155;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mechlean-page .ml-footer-social a:hover {
    border-color: var(--ml-navy);
    background: var(--ml-navy);
    color: #ffffff;
}

.mechlean-page .ml-footer-col h4 {
    font-family: Georgia, serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    margin: 0 0 16px;
}

.mechlean-page .ml-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mechlean-page .ml-footer-col li {
    padding: 4px 0;
    line-height: 1.6;
    color: #94a3b8;
    font-size: 13px;
}

.mechlean-page .ml-footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mechlean-page .ml-footer-col a:hover { color: #ffffff; }

.mechlean-page .ml-footer-address {
    margin-top: 8px;
    color: #94a3b8;
    line-height: 1.6;
}

.mechlean-page .ml-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #64748b;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.mechlean-page .ml-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.mechlean-page .ml-footer-legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 12px;
}

.mechlean-page .ml-footer-legal a:hover { color: #cbd5e1; }

/* Footer responsive */
@media (max-width: 1199px) {
    .mechlean-page .ml-footer-top {
        grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .mechlean-page .ml-footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 28px 24px;
    }
    .mechlean-page .ml-footer-brand {
        grid-column: 1 / -1;
        max-width: 480px;
    }
}

@media (max-width: 575px) {
    .mechlean-page .ml-footer { padding-top: 40px; }
    .mechlean-page .ml-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .mechlean-page .ml-footer-brand { grid-column: 1 / -1; }
    .mechlean-page .ml-footer-bottom { flex-direction: column; align-items: flex-start; }
    .mechlean-page .ml-footer-legal { gap: 14px; }
}

/* =================================================================
   ICONS — product cards + why-choose cards
   ================================================================= */

/* ---- Flagship ERP icon (top-right corner) ---- */
.mechlean-page .ml-flagship {
    position: relative;
}

.mechlean-page .ml-flagship-icon {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ---- Companion card icons (left side, vertical layout) ---- */
.mechlean-page .ml-companion {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mechlean-page .ml-companion-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ml-bg);
    color: var(--ml-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--ml-border);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mechlean-page .ml-companion:hover .ml-companion-icon {
    background: var(--ml-navy);
    color: #ffffff;
    border-color: var(--ml-navy);
}

.mechlean-page .ml-companion-body { flex: 1; }
.mechlean-page .ml-companion-body h4 { margin-top: 0; }

/* ---- Why-choose card icons (centered above title) ---- */
.mechlean-page .ml-why-card {
    position: relative;
}

.mechlean-page .ml-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: var(--ml-bg);
    color: var(--ml-navy);
    font-size: 18px;
    margin-bottom: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mechlean-page .ml-why-card:hover .ml-why-icon {
    background: var(--ml-navy);
    color: #ffffff;
}

@media (max-width: 767px) {
    .mechlean-page .ml-flagship-icon { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 18px; }
}

/* =================================================================
   PRODUCT PAGES — shared add-ons (sub-nav, contrast, modules, industries)
   Scoped to .mechlean-page so only redesigned pages pick them up.
   ================================================================= */

/* ---------- Sticky in-page sub-nav (anchor jumps) ----------
   Sticks just below the main ml-header. --ml-header-h is set
   dynamically by a small inline script on each product page so
   the offset survives responsive collapse and font-load shifts.
*/
.mechlean-page .ml-subnav {
    background: #ffffff;
    border-bottom: 1px solid var(--ml-border);
    position: sticky;
    top: var(--ml-header-h, 0px);
    z-index: 900;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.mechlean-page .ml-subnav-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
}

.mechlean-page .ml-subnav a {
    color: var(--ml-text);
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.mechlean-page .ml-subnav a:hover,
.mechlean-page .ml-subnav a.active {
    color: var(--ml-navy);
    border-bottom-color: var(--ml-navy);
}

.mechlean-page .ml-subnav .ml-subnav-cta {
    margin-left: auto;
    background: var(--ml-navy);
    color: #ffffff !important;
    padding: 8px 16px;
    font-weight: 500;
    border-bottom: none;
}

.mechlean-page .ml-subnav .ml-subnav-cta:hover {
    background: #0f2f6e;
    border-bottom: none;
}

@media (max-width: 767px) {
    .mechlean-page .ml-subnav-row { gap: 18px; }
    .mechlean-page .ml-subnav .ml-subnav-cta { margin-left: 18px; }
}

/* ---------- 3-column contrast block (Mfg ERP vs Reality vs FULCRUM) ---------- */
.mechlean-page .ml-contrast { background: #ffffff; }

.mechlean-page .ml-contrast-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.mechlean-page .ml-contrast-intro p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ml-text);
    margin: 0;
}

.mechlean-page .ml-contrast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.mechlean-page .ml-contrast-card {
    background: var(--ml-bg);
    border: 1px solid var(--ml-border);
    border-top: 3px solid #d6d3d1;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}

.mechlean-page .ml-contrast-card.is-problem { border-top-color: var(--ml-neg); }
.mechlean-page .ml-contrast-card.is-reality { border-top-color: #ca8a04; background: #fffbeb; }
.mechlean-page .ml-contrast-card.is-solution {
    border-top-color: var(--ml-navy);
    background: var(--ml-navy);
    color: #ffffff;
}

.mechlean-page .ml-contrast-card.is-solution * { color: #ffffff; }
.mechlean-page .ml-contrast-card.is-solution li:before { color: #ffffff !important; }

.mechlean-page .ml-contrast-tag {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.85;
}

.mechlean-page .ml-contrast-card.is-problem .ml-contrast-tag { color: var(--ml-neg); }
.mechlean-page .ml-contrast-card.is-reality .ml-contrast-tag { color: #92400e; }

.mechlean-page .ml-contrast-card h3 {
    font-family: Georgia, serif;
    font-size: 20px;
    margin: 0 0 14px;
    font-weight: 500;
}

.mechlean-page .ml-contrast-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mechlean-page .ml-contrast-card li {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    padding: 7px 0 7px 20px;
    position: relative;
    color: var(--ml-text);
}

.mechlean-page .ml-contrast-card li:before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--ml-muted);
}

@media (max-width: 991px) {
    .mechlean-page .ml-contrast-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Modules grid (10 ERP modules) ---------- */
.mechlean-page .ml-modules { background: var(--ml-bg); }

.mechlean-page .ml-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.mechlean-page .ml-module-card {
    background: #ffffff;
    border: 1px solid var(--ml-border);
    padding: 26px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mechlean-page .ml-module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border-color: var(--ml-navy);
}

.mechlean-page .ml-module-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    background: var(--ml-bg);
    color: var(--ml-navy);
    border: 1px solid var(--ml-border);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mechlean-page .ml-module-card:hover .ml-module-icon {
    background: var(--ml-navy);
    color: #ffffff;
    border-color: var(--ml-navy);
}

.mechlean-page .ml-module-body { flex: 1; min-width: 0; }

.mechlean-page .ml-module-body h3 {
    font-family: Georgia, serif;
    font-size: 18px;
    color: var(--ml-navy);
    margin: 0 0 6px;
    font-weight: 500;
}

.mechlean-page .ml-module-body p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ml-text);
    margin: 0 0 10px;
}

.mechlean-page .ml-module-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mechlean-page .ml-module-body li {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    padding: 3px 0 3px 16px;
    position: relative;
    color: var(--ml-text);
}

.mechlean-page .ml-module-body li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--ml-navy);
    font-weight: 700;
}

@media (max-width: 767px) {
    .mechlean-page .ml-modules-grid { grid-template-columns: 1fr; gap: 12px; }
    .mechlean-page .ml-module-card { padding: 20px 18px; gap: 14px; }
}

/* ---------- Industries strip ---------- */
.mechlean-page .ml-industries { background: #ffffff; }

.mechlean-page .ml-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1080px;
    margin: 0 auto;
}

.mechlean-page .ml-industry {
    background: var(--ml-bg);
    border: 1px solid var(--ml-border);
    padding: 22px 18px;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.mechlean-page .ml-industry:hover {
    border-color: var(--ml-navy);
    background: #ffffff;
}

.mechlean-page .ml-industry i {
    font-size: 24px;
    color: var(--ml-navy);
    margin-bottom: 10px;
    display: block;
}

.mechlean-page .ml-industry span {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: var(--ml-ink);
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .mechlean-page .ml-industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
    .mechlean-page .ml-industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .mechlean-page .ml-industry { padding: 18px 12px; }
    .mechlean-page .ml-industry span { font-size: 12px; }
}

/* ---------- Traffic-light status strip (SCP signature feature) ---------- */
.mechlean-page .ml-status { background: #ffffff; }

.mechlean-page .ml-status-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
}

.mechlean-page .ml-status-card {
    padding: 28px 26px;
    background: var(--ml-bg);
    border: 1px solid var(--ml-border);
    border-left-width: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mechlean-page .ml-status-card.is-red    { border-left-color: #dc2626; background: #fef2f2; }
.mechlean-page .ml-status-card.is-amber  { border-left-color: #d97706; background: #fffbeb; }
.mechlean-page .ml-status-card.is-green  { border-left-color: #15803d; background: #f0fdf4; }

.mechlean-page .ml-status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.mechlean-page .ml-status-card.is-red    .ml-status-dot { background: #dc2626; }
.mechlean-page .ml-status-card.is-amber  .ml-status-dot { background: #d97706; }
.mechlean-page .ml-status-card.is-green  .ml-status-dot { background: #15803d; }

.mechlean-page .ml-status-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mechlean-page .ml-status-card.is-red   .ml-status-label { color: #991b1b; }
.mechlean-page .ml-status-card.is-amber .ml-status-label { color: #92400e; }
.mechlean-page .ml-status-card.is-green .ml-status-label { color: #166534; }

.mechlean-page .ml-status-card h3 {
    font-family: Georgia, serif;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    color: var(--ml-ink);
}

.mechlean-page .ml-status-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ml-text);
    margin: 0;
}

@media (max-width: 767px) {
    .mechlean-page .ml-status-strip { grid-template-columns: 1fr; gap: 12px; }
    .mechlean-page .ml-status-card { padding: 22px 20px; }
}

/* ---------- Impact metrics strip (Quote Master signature block) ---------- */
.mechlean-page .ml-metrics { background: #ffffff; }

.mechlean-page .ml-metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}

.mechlean-page .ml-metric {
    background: var(--ml-bg);
    border: 1px solid var(--ml-border);
    border-top: 3px solid var(--ml-navy);
    padding: 28px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mechlean-page .ml-metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.mechlean-page .ml-metric-num {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--ml-navy);
    line-height: 1;
    margin: 0 0 4px;
}

.mechlean-page .ml-metric-num span {
    font-size: 24px;
    color: var(--ml-navy);
    margin-left: 2px;
}

.mechlean-page .ml-metric-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ml-muted);
    margin: 0 0 8px;
}

.mechlean-page .ml-metric-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ml-text);
    margin: 0;
}

@media (max-width: 991px) {
    .mechlean-page .ml-metrics-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .mechlean-page .ml-metrics-strip { grid-template-columns: 1fr; gap: 12px; }
    .mechlean-page .ml-metric { padding: 22px 18px; }
    .mechlean-page .ml-metric-num { font-size: 36px; }
}

/* ---------- Single-image hero variant (product pages, not the carousel home) ---------- */
.mechlean-page .ml-hero-single .ml-hero-h {
    font-size: 42px;
}

.mechlean-page .ml-hero-single .ml-hero-eyebrow {
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ml-navy);
    margin-bottom: 18px;
    padding: 4px 10px;
    background: rgba(20, 62, 136, 0.08);
}

@media (max-width: 991px) {
    .mechlean-page .ml-hero-single .ml-hero-h { font-size: 32px; }
}

@media (max-width: 767px) {
    .mechlean-page .ml-hero-single .ml-hero-h { font-size: 28px; }
}

    /* changed - keep Leaflet zoom controls inside map */
    #map-box.contact-map,
    #map-box.leaflet-container {
        position: relative !important;
        width: 100%;
        height: 370px; /* map height required */
        overflow: hidden !important;
        z-index: 1;
    }

    #map-box .leaflet-control-container {
        position: absolute !important;
        inset: 0 !important;
        pointer-events: none;
    }

    #map-box .leaflet-top,
    #map-box .leaflet-bottom {
        position: absolute !important;
        z-index: 1000 !important;
        pointer-events: none;
    }

    #map-box .leaflet-top {
        top: 12px !important;
    }

    #map-box .leaflet-left {
        left: 12px !important;
    }

    #map-box .leaflet-control {
        margin: 0 !important;
        pointer-events: auto;
    }

    #map-box .leaflet-control-zoom a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 18px;
    }
/* changed - mobile dropdown child links clickable fix */
@media (max-width: 991px) {
    .mechlean-page .ml-menu .ml-dropdown {
        display: none;
        position: static !important;
        float: none !important;
        width: 100%;
        clear: both;
        z-index: 9999;
    }

    .mechlean-page .ml-menu li.dropdown.open > .ml-dropdown {
        display: block !important;
    }

    .mechlean-page .ml-menu .ml-dropdown > li {
        display: block;
        width: 100%;
    }

    .mechlean-page .ml-menu .ml-dropdown > li > a {
        display: block !important;
        width: 100%;
        padding: 12px 18px !important;
        position: relative;
        z-index: 10000;
    }
}