@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700&display=swap');

:root{
    --lbs-navy:#0b2747;
    --lbs-blue:#087cff;
    --lbs-blue-dark:#0059d6;
    --lbs-text:#13233a;
    --lbs-muted:#64748b;
    --lbs-border:#e5eaf1;
    --lbs-bg:#f7faff;
    --lbs-white:#ffffff;
    --lbs-gold:#d99a16;
    --font-body:"Manrope","Segoe UI",Roboto,Arial,sans-serif;
    --font-display:"Space Grotesk","Manrope","Segoe UI",sans-serif;
    --header-height:82px;
    --container:1240px;
    --radius:16px;
    --shadow:0 8px 28px rgba(11,39,71,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:var(--font-body);
    color:var(--lbs-text);
    background:#fff;
    line-height:1.65;
    font-weight:400;
    letter-spacing:-0.01em;
}
h1,h2,h3,h4,h5,h6{
    font-family:var(--font-display);
    color:var(--lbs-navy);
    font-weight:700;
    letter-spacing:-0.035em;
    line-height:1.1;
}
h1{font-size:clamp(38px,5vw,68px)}
h2{font-size:clamp(30px,4vw,46px)}
h3{font-size:clamp(20px,2.2vw,28px)}
p{font-weight:400}
button,input,textarea,select{font-family:inherit}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:min(var(--container),calc(100% - 40px));margin-inline:auto}

/* Header */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    height:var(--header-height);
    background:#fff;
    border-bottom:1px solid rgba(11,39,71,.08);
    box-shadow:0 2px 14px rgba(11,39,71,.05);
}
.header-inner{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.brand{display:flex;align-items:center;flex:0 0 auto}
.brand img{
    width:172px;
    max-height:68px;
    object-fit:contain;
    object-position:left center;
}
.main-nav{display:flex;align-items:center;gap:4px;margin-left:auto}
.main-nav a,.nav-dropdown>button{
    border:0;
    background:transparent;
    color:#17263a;
    font-size:13px;
    font-weight:700;
    letter-spacing:-0.01em;
    padding:10px 11px;
    border-radius:9px;
    cursor:pointer;
    white-space:nowrap;
}
.main-nav a:hover,.nav-dropdown>button:hover,
.main-nav a.active{color:var(--lbs-blue);background:#f2f7ff}
.nav-dropdown{position:relative}
.nav-dropdown-menu{
    position:absolute;
    top:calc(100% + 9px);
    left:0;
    min-width:235px;
    padding:10px;
    background:#fff;
    border:1px solid var(--lbs-border);
    border-radius:13px;
    box-shadow:0 16px 40px rgba(11,39,71,.14);
    opacity:0;
    visibility:hidden;
    transform:translateY(5px);
    transition:.18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
    opacity:1;visibility:visible;transform:translateY(0)
}
.nav-dropdown-menu a{display:block;padding:9px 11px;font-size:13px}
.header-cta{
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    padding:11px 16px!important;
    color:#fff!important;
    background:linear-gradient(135deg,var(--lbs-blue),var(--lbs-blue-dark))!important;
    box-shadow:0 7px 18px rgba(8,124,255,.22);
}
.header-cta:hover{transform:translateY(-1px)}
.menu-toggle{display:none;border:0;background:#fff;font-size:26px;color:var(--lbs-navy);cursor:pointer}

/* Generic page helpers */
.page-hero{
    padding:90px 0;
    background:linear-gradient(135deg,#f8fbff,#eef6ff);
}
.section{padding:80px 0}
.section-title{text-align:center;max-width:800px;margin:0 auto 44px}
.eyebrow{
    color:var(--lbs-blue);
    font-size:12px;
    font-weight:800;
    letter-spacing:.10em;
    text-transform:uppercase;
}
.section-title h2{margin:8px 0 12px;font-size:clamp(30px,4vw,46px);line-height:1.12;font-weight:800}
.section-title p{margin:0;color:var(--lbs-muted)}
.btn{
    display:inline-flex;align-items:center;justify-content:center;
    gap:8px;padding:12px 19px;border-radius:9px;font-weight:700;
    border:1px solid transparent;transition:.2s ease;
}
.btn-primary{background:var(--lbs-blue);color:#fff}
.btn-primary:hover{background:var(--lbs-blue-dark);transform:translateY(-1px)}
.btn-outline{border-color:#cbd8e8;color:var(--lbs-navy);background:#fff}
.btn-outline:hover{border-color:var(--lbs-blue);color:var(--lbs-blue)}

/* Footer */
.site-footer{background:#071a31;color:#dce7f4;margin-top:0}
.footer-main{padding:58px 0 38px}
.footer-grid{
    display:grid;
    grid-template-columns:1.55fr 1fr 1fr 1fr 1.25fr;
    gap:36px;
}
.footer-brand img{width:170px;height:72px;object-fit:contain;object-position:left center;background:#fff;border-radius:7px}
.footer-brand p{color:#aebed1;font-size:13px;max-width:330px;margin:18px 0 0}
.footer-col h3{font-size:14px;color:#fff;margin:0 0 16px}
.footer-col a{display:block;color:#aebed1;font-size:13px;margin:9px 0}
.footer-col a:hover{color:#fff}
.footer-contact{color:#aebed1;font-size:13px}
.footer-contact div{margin:9px 0}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:18px 0;
    color:#91a5bc;
    font-size:12px;
}
.footer-bottom-inner{display:flex;justify-content:space-between;gap:20px}
.footer-bottom a{margin-left:18px}
.back-top{
    position:fixed;right:22px;bottom:22px;width:44px;height:44px;border:0;
    border-radius:50%;background:var(--lbs-blue);color:#fff;font-size:20px;
    cursor:pointer;box-shadow:0 8px 20px rgba(8,124,255,.3);
    opacity:0;visibility:hidden;transition:.2s;z-index:900
}
.back-top.show{opacity:1;visibility:visible}

/* Mobile */
@media (max-width:1050px){
    .main-nav{gap:0}
    .main-nav a,.nav-dropdown>button{font-size:12px;padding:9px 7px}
    .header-cta{padding:10px 11px!important}
    .brand img{width:145px}
}
@media (max-width:820px){
    :root{--header-height:72px}
    .header-inner{gap:12px}
    .brand img{width:145px;max-height:60px}
    .menu-toggle{display:block}
    .main-nav{
        position:absolute;left:20px;right:20px;top:calc(100% + 8px);
        display:none;flex-direction:column;align-items:stretch;
        background:#fff;border:1px solid var(--lbs-border);
        border-radius:14px;padding:10px;box-shadow:0 18px 40px rgba(11,39,71,.14)
    }
    .main-nav.open{display:flex}
    .main-nav a,.nav-dropdown>button{font-size:14px;text-align:left;width:100%}
    .nav-dropdown-menu{position:static;display:none;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;padding:0 0 0 12px}
    .nav-dropdown.open .nav-dropdown-menu{display:block}
    .header-cta{text-align:center!important}
    .footer-grid{grid-template-columns:1fr 1fr}
    .footer-brand{grid-column:1/-1}
}
@media (max-width:560px){
    .container{width:min(var(--container),calc(100% - 28px))}
    .section{padding:60px 0}
    .page-hero{padding:65px 0}
    .footer-grid{grid-template-columns:1fr}
    .footer-brand{grid-column:auto}
    .footer-bottom-inner{flex-direction:column}
    .footer-bottom a{margin-left:0;margin-right:14px}
}
/* =========================================
   LBS SOFTWARE � MOBILE MENU
   ========================================= */

.lbs-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;

    padding: 9px;

    border: 0;
    border-radius: 8px;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    position: relative;
    z-index: 1002;
}

.lbs-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    border-radius: 3px;

    background: #0b2747;

    transition:
        transform .25s ease,
        opacity .2s ease;
}

/* Hamburger ? X */

.lbs-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lbs-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.lbs-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   MOBILE PANEL
   ========================================= */

.lbs-mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 88vw);
    height: 100vh;

    background: #ffffff;

    z-index: 1001;

    transform: translateX(100%);

    transition:
        transform .3s ease;

    box-shadow:
        -15px 0 50px rgba(0, 0, 0, .15);

    overflow-y: auto;
}

.lbs-mobile-menu.open {
    transform: translateX(0);
}


/* Menu Header */

.lbs-mobile-menu-header {
    height: 76px;

    padding: 0 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e5ebf2;
}

.lbs-mobile-menu-header span {
    color: #087cff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;
}

.lbs-mobile-close {
    width: 38px;
    height: 38px;

    border: 1px solid #dbe3ec;

    border-radius: 8px;

    background: #f7faff;

    color: #0b2747;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;
}


/* Menu Body */

.lbs-mobile-menu-body {
    padding: 12px 20px 35px;
}

.lbs-mobile-menu-body > a,
.lbs-mobile-menu-body summary {
    display: flex;

    align-items: center;

    min-height: 48px;

    padding: 10px 4px;

    border-bottom: 1px solid #edf1f5;

    color: #0b2747;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;
}

.lbs-mobile-menu-body > a:hover,
.lbs-mobile-menu-body summary:hover {
    color: #087cff;
}


/* Dropdown */

.lbs-mobile-menu-body details {
    border-bottom: 1px solid #edf1f5;
}

.lbs-mobile-menu-body details summary {
    border-bottom: 0;

    list-style: none;

    justify-content: space-between;
}

.lbs-mobile-menu-body details summary::-webkit-details-marker {
    display: none;
}

.lbs-mobile-menu-body details summary::after {
    content: "+";

    color: #087cff;

    font-size: 18px;
    font-weight: 400;
}

.lbs-mobile-menu-body details[open] summary::after {
    content: "-";
}

.lbs-mobile-menu-body details a {
    display: block;

    padding: 9px 10px 9px 17px;

    color: #64748b;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.lbs-mobile-menu-body details a:hover {
    color: #087cff;
}


/* Partner CTA */

.lbs-mobile-partner {
    margin-top: 14px;

    justify-content: center !important;

    border-radius: 8px !important;

    background: #087cff;

    color: #ffffff !important;
}

.lbs-mobile-partner:hover {
    background: #0059d6;
}


/* =========================================
   OVERLAY
   ========================================= */

.lbs-mobile-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    background: rgba(3, 16, 31, .48);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.lbs-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   BODY LOCK
   ========================================= */

body.lbs-menu-open {
    overflow: hidden;
}


/* =========================================
   MOBILE BREAKPOINT
   ========================================= */

@media (max-width: 900px) {

    .lbs-menu-toggle {
        display: flex;
    }

    .lbs-main-nav {
        display: none;
    }

}


/* =========================================
   DESKTOP
   ========================================= */

@media (min-width: 901px) {

    .lbs-mobile-menu,
    .lbs-mobile-overlay {
        display: none;
    }

}

/* =========================================
   LBS SOFTWARE � MOBILE NAVIGATION
   ========================================= */

document.addEventListener("DOMContentLoaded", function () {

    const menuToggle =
        document.getElementById("lbsMenuToggle");

    const mobileMenu =
        document.getElementById("lbsMobileMenu");

    const mobileClose =
        document.getElementById("lbsMobileClose");

    const mobileOverlay =
        document.getElementById("lbsMobileOverlay");


    if (!menuToggle || !mobileMenu) {
        return;
    }


    function openMenu() {

        mobileMenu.classList.add("open");

        if (mobileOverlay) {
            mobileOverlay.classList.add("open");
        }

        menuToggle.classList.add("active");

        menuToggle.setAttribute(
            "aria-expanded",
            "true"
        );

        document.body.classList.add(
            "lbs-menu-open"
        );
    }


    function closeMenu() {

        mobileMenu.classList.remove("open");

        if (mobileOverlay) {
            mobileOverlay.classList.remove("open");
        }

        menuToggle.classList.remove("active");

        menuToggle.setAttribute(
            "aria-expanded",
            "false"
        );

        document.body.classList.remove(
            "lbs-menu-open"
        );
    }


    menuToggle.addEventListener(
        "click",
        function (event) {

            event.preventDefault();
            event.stopPropagation();

            if (mobileMenu.classList.contains("open")) {
                closeMenu();
            } else {
                openMenu();
            }

        }
    );


    if (mobileClose) {

        mobileClose.addEventListener(
            "click",
            function () {
                closeMenu();
            }
        );

    }


    if (mobileOverlay) {

        mobileOverlay.addEventListener(
            "click",
            function () {
                closeMenu();
            }
        );

    }


    /* Close after selecting a normal link */

    mobileMenu.querySelectorAll(
        "a"
    ).forEach(function (link) {

        link.addEventListener(
            "click",
            function () {
                closeMenu();
            }
        );

    });


    /* ESC key */

    document.addEventListener(
        "keydown",
        function (event) {

            if (
                event.key === "Escape" &&
                mobileMenu.classList.contains("open")
            ) {
                closeMenu();
            }

        }
    );


    /* Close if resized back to desktop */

    window.addEventListener(
        "resize",
        function () {

            if (window.innerWidth > 900) {
                closeMenu();
            }

        }
    );

});