/* ═══════════════════════════════════════════════════════════════════════════
   Level Up — shared widgets present on every page (toast + Zoho enquiry modal).
   Ported verbatim from the approved build's page-end blocks. Loaded globally.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Toast ── */
#lu-toast{position:fixed;left:50%;bottom:34px;transform:translateX(-50%) translateY(24px);
    z-index:2147483647;pointer-events:none;opacity:0;transition:opacity .28s ease,transform .28s ease;
    background:#0e0e2e;color:#fff;border:1px solid rgba(127,214,209,.35);
    border-radius:50px;padding:14px 26px;font-family:'LEMONMILK','Futura',sans-serif;
    font-size:12px;letter-spacing:.14em;text-transform:uppercase;
    box-shadow:0 18px 50px rgba(0,0,0,.55);max-width:90vw;text-align:center;}
#lu-toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
#lu-toast i{color:#7ED6D1;margin-right:9px;}

/* ── Shared Zoho enquiry modal ── */
.lu-zmodal{display:none;position:fixed;inset:0;z-index:100000;align-items:center;justify-content:center;
    background:rgba(10,10,42,.78);backdrop-filter:blur(6px);padding:20px;}
.lu-zmodal.open{display:flex;}
.lu-zmodal-box{position:relative;width:100%;max-width:640px;max-height:94vh;display:flex;flex-direction:column;
    border-radius:16px;overflow:hidden;background:#0e0e2e;box-shadow:0 30px 80px rgba(0,0,0,.6);
    border:1px solid rgba(127,214,209,.18);}
.lu-zmodal-head{padding:26px 30px 16px;flex-shrink:0;}
.lu-zmodal-bar{width:36px;height:2px;background:#7ED6D1;margin-bottom:13px;}
.lu-zmodal-title{font-family:'LEMONMILK','Futura',sans-serif;font-weight:300;text-transform:uppercase;
    font-size:clamp(20px,2.4vw,26px);color:#fff;letter-spacing:.02em;line-height:1.05;}
.lu-zmodal-title span{color:#7ED6D1;}
.lu-zmodal-body{background:#fff;flex:1 1 auto;overflow-y:auto;-webkit-overflow-scrolling:touch;}
.lu-zmodal-x{position:absolute;top:14px;right:14px;z-index:3;width:34px;height:34px;border-radius:50%;
    border:none;background:rgba(255,255,255,.1);color:#fff;font-size:15px;cursor:pointer;line-height:1;
    display:flex;align-items:center;justify-content:center;transition:background .2s;}
.lu-zmodal-x:hover{background:rgba(255,255,255,.22);}
@media(max-width:575px){.lu-zmodal-box{border-radius:0;max-height:100vh;height:100vh;}}
