.eco-mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .45);
    background: #1e293b;
    color: #f8fafc;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s ease, border-color .15s ease;
}
.eco-mobile-menu-btn:hover,
.eco-mobile-menu-btn[aria-expanded="true"] {
    background: #334155;
    border-color: rgba(34, 211, 238, .45);
}
.eco-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1400;
    background: rgba(2, 6, 23, .72);
}
.eco-mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(18rem, 88vw);
    height: 100%;
    padding: 1.25rem 1rem 1.5rem;
    background: #0f172a;
    border-left: 1px solid #1e293b;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.eco-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.eco-mobile-menu-title {
    font-weight: 600;
    color: #f1f5f9;
}
.eco-mobile-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #94a3b8;
    font-size: 1.25rem;
    cursor: pointer;
}
.eco-mobile-menu-close:hover { color: #f8fafc; background: rgba(51, 65, 85, .5); }
.eco-mobile-greeting {
    margin: 0 0 .75rem;
    padding: .55rem .75rem;
    border-radius: .75rem;
    background: rgba(34, 211, 238, .08);
    border: 1px solid rgba(34, 211, 238, .2);
    color: #67e8f9;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.eco-mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.eco-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem .85rem;
    border-radius: .85rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: .95rem;
    transition: background .15s ease, color .15s ease;
}
.eco-mobile-menu-link i {
    width: 1.15rem;
    text-align: center;
    color: #22d3ee;
}
.eco-mobile-menu-link:hover,
.eco-mobile-menu-link.is-active {
    background: rgba(34, 211, 238, .1);
    color: #f8fafc;
    text-decoration: none;
}
body.eco-menu-open { overflow: hidden; }

@media (max-width: 767px) {
    .eco-top-nav .max-w-screen-2xl { padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
    body.bg-slate-950 main .max-w-screen-2xl,
    body.bg-slate-950 main.max-w-screen-2xl,
    body.bg-slate-950 #admin.max-w-screen-2xl {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    body.bg-slate-950 main { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
    .eco-role-nav { padding: .85rem; }
    .eco-role-body strong { white-space: normal; overflow: visible; text-overflow: unset; }
    .ej-billing-toggle { display: flex; flex-wrap: wrap; width: 100%; justify-content: center; }
    .pricing-grid { grid-template-columns: 1fr; }
}