.elementor-132 .elementor-element.elementor-element-632c732{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-4d986f4 */html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    box-shadow: 1px 1px 15px .5px white;
}

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

.header-logo {
    height: 80px;
}

.header-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}

.header-nav a {
    color: white;   
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.header-nav a:hover {
    opacity: 1;
    color: #DAA520;
}

.header-actions {
    display: flex;
    gap: 16px;
}

.header-btn-secondary,
.header-btn-primary {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-btn-secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-btn-primary {
    background: #DAA520;
    color: #000000;
}

.header-btn-primary:hover {
    background: #C89B1A;
    transform: translateY(-1px);
}

/* Mobile Free Trial Button - hidden by default */
.mobile-free-trial {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 40px;
    gap: 16px;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #DAA520;
}

.mobile-menu-btn {
    text-align: center;
    padding: 14px 24px !important;
    border-radius: 8px;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn.primary {
    background: #DAA520;
    color: #000000 !important;
    border: none;
}

@media (max-width: 968px) {
    .header-container {
        padding: 16px 20px;
    }

    .header-nav,
    .header-actions {
        display: none;
    }

    .header-logo {
        margin-right: auto; /* Push everything else to the right */
    }

    /* Show mobile free trial button */
    .mobile-free-trial {
        display: block;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        white-space: nowrap;
        transition: all 0.3s ease;
        margin-right: 8px; /* 8px gap between button and menu toggle */
    }

    .mobile-free-trial:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: 0; /* Remove any default margin */
    }
}/* End custom CSS */