.elementor-34 .elementor-element.elementor-element-9269048{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f3d422c *//* =========================
   RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
    background: #0b0f17;
    color: #ffffff;
}

/* =========================
   HEADER (MODERN FLOATING BAR)
========================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(15, 18, 25, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================
   NAVBAR
========================= */
.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO (MINIMAL MODERN)
========================= */
.logo {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-main {
    color: #4da3ff;
}

.logo-accent {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* =========================
   NAV LINKS (CLEAN STYLE)
========================= */
.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #ffffff;
}

/* subtle underline animation */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: #4da3ff;
    transition: 0.25s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* =========================
   CTA BUTTON (MODERN PILLS STYLE)
========================= */
.trial-btn {
    padding: 10px 16px;
    border-radius: 999px;
    background: #4da3ff;
    color: #0b0f17;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.trial-btn:hover {
    background: transparent;
    color: #4da3ff;
    border: 1px solid #4da3ff;
    transform: translateY(-1px);
}

/* =========================
   MOBILE MENU ICON (CLEAN)
========================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .trial-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}/* End custom CSS */