/* ============================================================
   KIOSK.CSS  —  FULCRUM Smart Shop Floor Terminal product page
   Loaded AFTER home.css, on FULCRUM-Kiosk.html only.
   Inherits design tokens from .mechlean-page in home.css:
   --ml-navy --ml-ink --ml-text --ml-muted --ml-bg --ml-border --ml-accent
   Nothing here overrides an existing home.css rule.
   ============================================================ */


/* ------------------------------------------------------------
   SHARED: figure + caption for annotated product photographs
   ------------------------------------------------------------ */
.mechlean-page .ml-kfig {
    margin: 0;
    border: 1px solid var(--ml-border);
    background: #fff;
}

.mechlean-page .ml-kfig img {
    display: block;
    width: 100%;
    height: auto;
}

.mechlean-page .ml-kfig figcaption {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ml-muted);
    padding: 12px 16px;
    border-top: 1px solid var(--ml-border);
    background: var(--ml-bg);
}


/* ------------------------------------------------------------
   BLOCK 4 / 8: TWO-COLUMN SPLIT  (text beside a product image)
   ------------------------------------------------------------ */
.mechlean-page .ml-ksplit-row {
    display: flex;
    align-items: center;
    gap: 56px;
}

.mechlean-page .ml-ksplit-text { flex: 1 1 52%; min-width: 0; }
.mechlean-page .ml-ksplit-media { flex: 1 1 48%; min-width: 0; }

.mechlean-page .ml-ksplit-reverse { flex-direction: row-reverse; }

.mechlean-page .ml-ksplit-text h2 {
    font-size: 34px;
    margin: 0 0 20px;
}

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

.mechlean-page .ml-ksplit-points {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.mechlean-page .ml-ksplit-points li {
    position: relative;
    padding: 0 0 0 26px;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ml-text);
}

.mechlean-page .ml-ksplit-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--ml-accent);
}

@media (max-width: 991px) {
    .mechlean-page .ml-ksplit-row,
    .mechlean-page .ml-ksplit-reverse {
        flex-direction: column;
        gap: 32px;
    }
    .mechlean-page .ml-ksplit-text h2 { font-size: 27px; }
}


/* ------------------------------------------------------------
   BLOCK 5: INTERACTIVE FEATURE TOUR (hotspot overlay)
   ------------------------------------------------------------ */
.mechlean-page .ml-ktour { background: var(--ml-bg); }

.mechlean-page .ml-ktour-grid {
    display: flex;
    align-items: center;
    gap: 56px;
}

.mechlean-page .ml-ktour-stage {
    flex: 0 0 46%;
    max-width: 46%;
    position: relative;
    border: 1px solid var(--ml-border);
    background: #fff;
    align-self: flex-start;
}

.mechlean-page .ml-ktour-stage img {
    display: block;
    width: 100%;
    height: auto;
}

.mechlean-page .ml-ktour-panel {
    flex: 1 1 auto;
    min-width: 0;
}

/* --- hotspot dots --- */
.mechlean-page .ml-kdot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--ml-navy);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .34);
    transition: transform .18s ease, background-color .18s ease;
    z-index: 2;
}

.mechlean-page .ml-kdot::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border-radius: 50%;
    border: 2px solid var(--ml-navy);
    opacity: .5;
    animation: ml-kpulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes ml-kpulse {
    0%   { transform: scale(.75); opacity: .6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.mechlean-page .ml-kdot:hover { transform: translate(-50%, -50%) scale(1.14); }

.mechlean-page .ml-kdot.is-active {
    background: var(--ml-accent);
    transform: translate(-50%, -50%) scale(1.18);
}

.mechlean-page .ml-kdot.is-active::after { animation: none; opacity: 0; }

.mechlean-page .ml-kdot:focus {
    outline: 3px solid var(--ml-accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .mechlean-page .ml-kdot::after { animation: none; opacity: 0; }
}

/* --- panel cards --- */
.mechlean-page .ml-kcard { display: none; }
.mechlean-page .ml-kcard.is-active { display: block; }

.mechlean-page .ml-kcard-tag {
    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);
    border: 1px solid var(--ml-border);
    background: #fff;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.mechlean-page .ml-kcard h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.25;
    margin: 0 0 14px;
    color: var(--ml-ink);
}

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

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

.mechlean-page .ml-kcard li {
    position: relative;
    padding: 0 0 0 26px;
    margin-bottom: 11px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ml-text);
}

.mechlean-page .ml-kcard li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--ml-accent);
}

/* --- step indicator --- */
.mechlean-page .ml-ksteps {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--ml-border);
}

.mechlean-page .ml-kstep {
    flex: 1;
    height: 4px;
    padding: 0;
    border: 0;
    background: var(--ml-border);
    cursor: pointer;
}

.mechlean-page .ml-kstep.is-active { background: var(--ml-navy); }
.mechlean-page .ml-kstep:focus { outline: 2px solid var(--ml-accent); outline-offset: 3px; }

/* --- mobile index badge, hidden on desktop --- */
.mechlean-page .ml-kcard-idx { display: none; }

/* --- tablet --- */
@media (max-width: 1199px) {
    .mechlean-page .ml-ktour-grid { gap: 36px; }
    .mechlean-page .ml-ktour-stage { flex-basis: 42%; max-width: 42%; }
    .mechlean-page .ml-kcard h3 { font-size: 24px; }
}

/* --- mobile: every card becomes readable stacked text --- */
@media (max-width: 900px) {
    .mechlean-page .ml-ktour-grid {
        flex-direction: column;
        gap: 28px;
    }

    .mechlean-page .ml-ktour-stage {
        flex-basis: auto;
        max-width: 100%;
        width: 100%;
    }

    .mechlean-page .ml-kdot {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    /* all cards visible — no hidden text on small screens */
    .mechlean-page .ml-kcard {
        display: block;
        padding: 24px 0;
        border-bottom: 1px solid var(--ml-border);
    }

    .mechlean-page .ml-kcard:last-of-type { border-bottom: 0; }

    .mechlean-page .ml-ksteps { display: none; }

    .mechlean-page .ml-kcard-idx {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--ml-navy);
        color: #fff;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 700;
        margin-right: 10px;
        vertical-align: 2px;
    }

    .mechlean-page .ml-kcard h3 { font-size: 22px; }
}


/* ------------------------------------------------------------
   BLOCK 7: SOFTWARE INTEGRATION (two product columns)
   ------------------------------------------------------------ */
.mechlean-page .ml-ksoft-row {
    display: flex;
    gap: 28px;
    margin-bottom: 56px;
}

.mechlean-page .ml-ksoft-col {
    flex: 1 1 50%;
    min-width: 0;
    border: 1px solid var(--ml-border);
    border-top: 3px solid var(--ml-navy);
    background: #fff;
    padding: 32px 30px;
}

.mechlean-page .ml-ksoft-col.is-erp { border-top-color: var(--ml-accent); }

.mechlean-page .ml-ksoft-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--ml-navy);
    margin: 0 0 4px;
}

.mechlean-page .ml-ksoft-col.is-erp .ml-ksoft-name { color: var(--ml-accent); }

.mechlean-page .ml-ksoft-role {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: var(--ml-muted);
    margin: 0 0 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ml-border);
}

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

.mechlean-page .ml-ksoft-col li {
    position: relative;
    padding: 0 0 0 26px;
    margin-bottom: 11px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ml-text);
}

.mechlean-page .ml-ksoft-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--ml-navy);
}

.mechlean-page .ml-ksoft-col.is-erp li::before { background: var(--ml-accent); }

@media (max-width: 991px) {
    .mechlean-page .ml-ksoft-row { flex-direction: column; gap: 20px; }
}


/* ------------------------------------------------------------
   ALTERNATING SECTION TINT
   home.css leaves most sections white. Applied to Benefits so the
   run of Software / Benefits / Industries / FAQ does not read flat.
   ------------------------------------------------------------ */
.mechlean-page .ml-kalt { background: var(--ml-bg); }


/* ------------------------------------------------------------
   BLOCK 9: CONSTRUCTION & SPECIFICATIONS
   ------------------------------------------------------------ */
.mechlean-page .ml-kspec { background: var(--ml-bg); }

.mechlean-page .ml-kspec-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.mechlean-page .ml-kspec-build { flex: 1 1 44%; min-width: 0; }
.mechlean-page .ml-kspec-table-wrap { flex: 1 1 56%; min-width: 0; }

.mechlean-page .ml-kbuild {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.mechlean-page .ml-kbuild li {
    border-left: 3px solid var(--ml-navy);
    background: #fff;
    padding: 14px 18px;
    margin-bottom: 12px;
}

.mechlean-page .ml-kbuild strong {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: .3px;
    color: var(--ml-ink);
    margin-bottom: 3px;
}

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

.mechlean-page .ml-ktable {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--ml-border);
}

.mechlean-page .ml-ktable caption {
    caption-side: top;
    text-align: left;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ml-navy);
    padding: 0 0 12px;
}

.mechlean-page .ml-ktable th,
.mechlean-page .ml-ktable td {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--ml-border);
    vertical-align: top;
}

.mechlean-page .ml-ktable tr:last-child th,
.mechlean-page .ml-ktable tr:last-child td { border-bottom: 0; }

.mechlean-page .ml-ktable th {
    width: 42%;
    font-weight: 500;
    color: var(--ml-ink);
    background: var(--ml-bg);
}

.mechlean-page .ml-ktable td { color: var(--ml-text); }

/* value the client has not supplied yet */
.mechlean-page .ml-ktable td.is-pending {
    color: var(--ml-muted);
    font-style: italic;
}

.mechlean-page .ml-kspec-note {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ml-muted);
    margin: 14px 0 0;
}

@media (max-width: 991px) {
    .mechlean-page .ml-kspec-row { flex-direction: column; gap: 36px; }
    .mechlean-page .ml-ktable th { width: 46%; }
}

@media (max-width: 480px) {
    .mechlean-page .ml-ktable th,
    .mechlean-page .ml-ktable td { padding: 12px 13px; font-size: 14px; }
}


/* ------------------------------------------------------------
   BLOCK 11: FAQ
   ------------------------------------------------------------ */
.mechlean-page .ml-kfaq-list {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid var(--ml-border);
}

.mechlean-page .ml-kfaq-item { border-bottom: 1px solid var(--ml-border); }

.mechlean-page .ml-kfaq-q {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 22px 44px 22px 0;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ml-ink);
    cursor: pointer;
}

.mechlean-page .ml-kfaq-q:hover { color: var(--ml-navy); }
.mechlean-page .ml-kfaq-q:focus { outline: 2px solid var(--ml-accent); outline-offset: -2px; }

.mechlean-page .ml-kfaq-q::after {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--ml-navy);
    line-height: 1;
}

.mechlean-page .ml-kfaq-q[aria-expanded="true"]::after { content: "\2212"; }

.mechlean-page .ml-kfaq-a {
    display: none;
    padding: 0 44px 24px 0;
}

.mechlean-page .ml-kfaq-a.is-open { display: block; }

.mechlean-page .ml-kfaq-a p {
    font-family: 'Roboto', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ml-text);
    margin: 0;
}

@media (max-width: 767px) {
    .mechlean-page .ml-kfaq-q { font-size: 16px; padding-right: 36px; }
}


/* ------------------------------------------------------------
   HERO TWEAK: keep the tall portrait product shot in proportion
   ------------------------------------------------------------ */
.mechlean-page .ml-khero-visual img {
    max-height: 520px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 991px) {
    .mechlean-page .ml-khero-visual img { max-height: 380px; }
}
