    /* ===============================
           HEADER
        ================================ */

        .site-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: #0f0f0f;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .site-header-container {
            max-width: 1200px;
            margin: auto;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .site-logo img {
            height: 60px;
        }

        .site-nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .site-nav a {
            font-family: 'Montserrat', sans-serif;
            color: #ffffff;
            font-size: 13px;
            font-weight: 500;
            position: relative;
        }

        .site-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #ff6600;
            transition: width 0.3s ease;
        }

        .site-nav a:hover::after {
            width: 100%;
        }

        .bookademo {
            background: #ff6600;
            color: #000000;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 20px;
            border: none;
            border-radius: 999px;
            cursor: pointer;
            transition: all .25s ease;
        }

        .bookademo:hover {
            background: #e85b00;
        }

        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .hamburger-btn span {
            width: 26px;
            height: 2px;
            background: #fff;
        }

        /* ===============================
           CONTENT PLACEHOLDER
        ================================ */

        .page-content {
            min-height: 60vh;
        }

        /* ===============================
           MOBILE MENU
        ================================ */

        @media (max-width: 768px) {

            .hamburger-btn {
                display: flex;
            }

            .site-nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #111;
                flex-direction: column;
                align-items: center;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height .3s ease;
            }

            .site-nav.active {
                max-height: 500px;
            }

            .site-nav a {
                padding: 16px 20px;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,.08);
            }

            .bookademo {
                margin: 15px 0;
            }
        }
        /* BLOG DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 320px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    z-index: 9999;
    padding: 8px 0;
}

.dropdown-content a {
    display: block !important;
    width: 100%;
    padding: 12px 18px !important;
    color: #fff !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    white-space: normal;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #ff6600;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Remove underline effect inside dropdown */
.dropdown-content a::after {
    display: none !important;
}

/* MOBILE */
@media (max-width:768px){

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: block;
        background: rgba(255,255,255,.03);
        box-shadow: none;
        min-width: 100%;
        border-radius: 0;
    }

    .dropdown-content a {
        padding-left: 35px !important;
        text-align: center;
    }
}