.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.4s ease-in-out;
    font-family: "Inter", sans-serif;
    pointer-events: auto;
}

.main-header.scrolled {
    position: fixed;
    background-color: rgba(10, 12, 18, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nova-navbar {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    padding: 24px 5%;
    background-color: transparent;
    transition: padding 0.4s ease-in-out;
    column-gap: 24px;
}

.main-header.scrolled .nova-navbar {
    padding: 8px 5%;
}

.nova-logo {
    display: block;
    text-decoration: none;
    justify-self: start;
    position: relative;
    z-index: 2100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nova-logo picture,
.nova-mobile-logo picture {
    display: block;
    line-height: 0;
}

.nova-logo img {
    max-height: 90px;
    width: auto;
    display: block;
    transition: max-height 0.4s ease-in-out;
}

.main-header.scrolled .nova-logo img {
    max-height: 55px;
}

.nova-nav-wrapper {
    justify-self: center;
    min-width: 0;
}

.nova-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.nova-nav-links > li {
    position: relative;
}

.nova-nav-links > li > a,
.nova-nav-links > li > button {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nova-nav-links > li > a:hover,
.nova-nav-links > li > button:hover,
.nova-nav-links > li > button.is-active,
.nova-nav-links > li.is-open > button,
.nova-nav-links > li > a.is-active,
.nova-nav-links > li > a[aria-current="page"] {
    color: #C6FF33;
}

.nova-nav-caret {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.nova-has-dropdown.is-open .nova-nav-caret {
    transform: rotate(180deg);
}

.nova-has-dropdown::after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 34px;
    pointer-events: auto;
}

.nova-has-dropdown:not(:hover):not(.is-open)::after {
    pointer-events: none;
}

.nova-mega-menu {
    position: fixed;
    top: 92px;
    left: 50vw;
    transform: translateX(-50%) translateY(12px);
    width: min(1680px, calc(100vw - 48px));
    padding: 14px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 12%, rgba(198, 255, 51, 0.06), transparent 18%),
        radial-gradient(circle at 86% 18%, rgba(125, 83, 235, 0.09), transparent 20%),
        linear-gradient(180deg, rgba(15, 19, 29, 0.985), rgba(7, 10, 16, 0.985));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 2200;
}

.main-header.scrolled .nova-mega-menu {
    top: 62px;
}

.nova-has-dropdown.is-open .nova-mega-menu,
.nova-has-dropdown:hover .nova-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nova-mega-menu::before {
    content: "";
    position: absolute;
    top: -9px;
    left: calc(50% - 58px);
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(13, 17, 25, 0.97);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nova-mega-shell {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    background: transparent;
}

.nova-mega-menu-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 16px;
    padding: 0;
    align-items: stretch;
}

.nova-mega-intro {
    padding: 20px;
    border-radius: 19px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018)),
        linear-gradient(180deg, rgba(198,255,51,0.05), rgba(125,83,235,0.04));
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nova-mega-intro::after {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198,255,51,0.13), transparent 70%);
    pointer-events: none;
}

.nova-mega-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #C6FF33;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nova-mega-title {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.nova-mega-ad-stage {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    min-height: 330px;
    margin-bottom: 18px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: #090b10;
    box-shadow:
        0 20px 44px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.06);
    isolation: isolate;
}

.nova-mega-ad-stage::before,
.nova-mega-ad-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 8;
}

.nova-mega-ad-stage::before {
    background: linear-gradient(90deg, rgba(6,8,12,0.34), rgba(6,8,12,0.08) 48%, transparent 82%);
}

.nova-mega-ad-stage::after {
    opacity: 0.17;
    background-image: url("../../../images/ui/asfalt-light-WlTWgi7.svg");
    mix-blend-mode: soft-light;
}

.nova-mega-ad {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition:
        opacity 0.55s ease,
        transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.55s ease;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.nova-mega-ad.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.nova-mega-ad--lime {
    background-image: url("../../../images/header/header-turn-attention-into-action-Yo7npSf.webp");
    background-image: image-set(
        url("../../../images/header/header-turn-attention-into-action-mqBsgva.avif") type("image/avif"),
        url("../../../images/header/header-turn-attention-into-action-Yo7npSf.webp") type("image/webp")
    );
    background-position: center;
}

.nova-mega-ad--violet {
    background-image: url("../../../images/header/header-look-different-feel-unmistakable-3R7ziu4.webp");
    background-image: image-set(
        url("../../../images/header/header-look-different-feel-unmistakable-bRAWICS.avif") type("image/avif"),
        url("../../../images/header/header-look-different-feel-unmistakable-3R7ziu4.webp") type("image/webp")
    );
    background-position: center;
}

.nova-mega-ad--pink {
    background-image: url("../../../images/header/header-made-to-move-built-to-stick-QOfVe7s.webp");
    background-image: image-set(
        url("../../../images/header/header-made-to-move-built-to-stick-ytt_UMY.avif") type("image/avif"),
        url("../../../images/header/header-made-to-move-built-to-stick-QOfVe7s.webp") type("image/webp")
    );
    background-position: center;
}

.nova-mega-ad--blue {
    background-image: url("../../../images/header/header-built-around-how-you-work-KpYyJmD.webp");
    background-image: image-set(
        url("../../../images/header/header-built-around-how-you-work-69ipnk5.avif") type("image/avif"),
        url("../../../images/header/header-built-around-how-you-work-KpYyJmD.webp") type("image/webp")
    );
    background-position: center;
}

.nova-mega-ad-copy {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 18px;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nova-mega-ad-title {
    display: block;
    max-width: 225px;
    margin: 0 0 9px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 0.91;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-shadow: 0 8px 26px rgba(0,0,0,0.42);
}

.nova-mega-ad-title em {
    color: #C6FF33;
    font-style: normal;
}

.nova-mega-ad-text {
    display: block;
    max-width: 220px;
    color: rgba(255,255,255,0.76);
    font-size: 10.5px;
    line-height: 1.42;
    font-weight: 600;
    text-shadow: 0 4px 16px rgba(0,0,0,0.52);
}

.nova-mega-ad-mark {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #0a0c12;
    background: #C6FF33;
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.24);
}

.nova-mega-pitch {
    display: block;
    width: 100%;
    margin-top: auto;
    margin-bottom: 14px;
}

.nova-mega-pitch span {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.nova-mega-pitch span:nth-child(1) {
    font-size:clamp(1.25rem, 0.969vw, 1.55rem);
    color: #C6FF33;
}

.nova-mega-pitch span:nth-child(2) {
    font-size:clamp(1.85rem, 1.437vw, 2.3rem);
    color: #f5f6fa;
}

.nova-mega-pitch span:nth-child(3) {
    font-size:clamp(1.12rem, 0.875vw, 1.4rem);
    color: #C6FF33;
}

.nova-mega-pitch span:nth-child(4) {
    font-size:clamp(1.25rem, 0.969vw, 1.55rem);
    color: #f5f6fa;
}

.nova-mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: #0a0c12;
    background: #C6FF33;
    padding: 11px 15px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nova-mega-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(198,255,51,0.22);
}

.nova-mega-groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.nova-mega-group {
    padding: 14px 13px 13px;
    border-radius: 17px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.045);
    min-height: auto;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nova-mega-group:hover {
    transform: translateY(-2px);
    border-color: rgba(198,255,51,0.14);
    background: rgba(255,255,255,0.04);
}

.nova-mega-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nova-mega-group-title i {
    color: #C6FF33;
    font-size: 14.5px;
}

.nova-mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.nova-mega-list li {
    margin: 0;
    padding: 0;
}

.nova-mega-list a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    text-decoration: none;
    padding: 9px 10px;
    border-radius: 11px;
    color: rgba(255,255,255,0.82);
    border: 1px solid transparent;
    background: rgba(255,255,255,0.018);
    transition: all 0.22s ease;
}

.nova-mega-list a:hover,
.nova-mega-list a.is-active {
    color: #ffffff;
    border-color: rgba(198,255,51,0.16);
    background: rgba(198,255,51,0.05);
    transform: translateX(3px);
}

.nova-mega-link-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.nova-mega-link-copy strong {
    font-size: 13px;
    font-weight: 700;
    color: inherit;
    line-height: 1.22;
}

.nova-mega-link-copy span {
    font-size: 10.8px;
    line-height: 1.3;
    color: rgba(255,255,255,0.50);
}

.nova-mega-link-icon {
    flex: 0 0 auto;
    color: #C6FF33;
    font-size: 10px;
    margin-top: 3px;
}

.nova-header-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 2100;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #C6FF33;
}

.nova-btn-primary {
    background-color: #C6FF33;
    color: #000000;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.nova-btn-primary:hover {
    transform: translateY(-2px);
    background-color: #d7ff5b;
    box-shadow: 0 4px 15px rgba(198, 255, 51, 0.4);
}

.nova-menu-bottom,
.nova-menu-overlay,
.nova-mobile-toggle,
.nova-mobile-panel-glow,
.nova-mobile-panel-grid,
.nova-mobile-panel-noise,
.nova-mobile-cta,
.nova-mobile-pitch,
.nova-mobile-menu-header,
.nova-mobile-logo,
.nova-mobile-close,
.nova-mobile-divider,
.nova-mobile-trust,
.nova-mobile-divider-secondary,
.nova-mobile-submenu,
.nova-mobile-submenu-grid,
.nova-mobile-submenu-list,
.nova-mobile-submenu-toggle {
    display: none;
}

@media (min-width: 1800px) {
    .nova-mega-menu {
        width: min(1760px, calc(100vw - 80px));
        padding: 16px;
    }

    .nova-mega-menu-inner {
        grid-template-columns: 310px 1fr;
        gap: 18px;
    }

    .nova-mega-title {
        font-size: 30px;
    }

    .nova-mega-group {
        padding: 16px 15px 15px;
    }

    .nova-mega-group-title {
        font-size: 15.5px;
    }

    .nova-mega-link-copy strong {
        font-size: 13.5px;
    }

    .nova-mega-link-copy span {
        font-size: 11.2px;
    }
}

@media (max-width: 1440px) and (min-width: 1024px) {
    .nova-navbar {
        grid-template-columns: 170px 1fr auto;
        column-gap: 18px;
    }

    .nova-nav-links {
        gap: 24px;
    }

    .nova-mega-menu {
        width: calc(100vw - 24px);
        padding: 12px;
    }

    .nova-mega-menu-inner {
        grid-template-columns: 240px 1fr;
        gap: 12px;
    }

    .nova-mega-intro {
        padding: 17px;
    }

    .nova-mega-title {
        font-size: 23px;
    }

    .nova-mega-highlight {
        font-size: 12px;
        padding: 8px 9px;
    }

    .nova-mega-groups {
        gap: 10px;
    }

    .nova-mega-group {
        padding: 12px 11px;
    }

    .nova-mega-link-copy span {
        display: none;
    }
}

@media (max-width: 1280px) and (min-width: 1024px) {
    .nova-navbar {
        grid-template-columns: 150px 1fr auto;
        padding-left: 3%;
        padding-right: 3%;
    }

    .nova-mega-cta {
        padding: 9px 11px;
        font-size: 9.5px;
        gap: 6px;
        white-space: nowrap;
        letter-spacing: 0.04em;
    }

    .nova-nav-links {
        gap: 18px;
    }

    .nova-nav-links > li > a,
    .nova-nav-links > li > button {
        font-size: 13px;
        letter-spacing: 0.07em;
    }

    .nova-header-right {
        gap: 12px;
    }

    .nova-btn-primary {
        padding: 11px 20px;
        font-size: 12px;
    }

    .nova-mega-menu {
        width: calc(100vw - 18px);
        top: 104px;
        padding: 10px;
    }

    .main-header.scrolled .nova-mega-menu {
        top: 70px;
    }

    .nova-mega-menu-inner {
        grid-template-columns: 210px 1fr;
        gap: 10px;
    }

    .nova-mega-groups {
        gap: 8px;
    }

    .nova-mega-group {
        padding: 10px 9px;
        border-radius: 14px;
    }

    .nova-mega-group-title {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .nova-mega-link-copy strong {
        font-size: 12px;
    }
}

@media (max-height: 760px) and (min-width: 1024px) {
    .nova-mega-menu {
        top: 96px;
        padding: 9px;
    }

    .main-header.scrolled .nova-mega-menu {
        top: 66px;
    }

    .nova-mega-menu-inner {
        grid-template-columns: 190px 1fr;
        gap: 9px;
    }

    .nova-mega-intro {
        padding: 14px;
    }

    .nova-mega-eyebrow {
        display: none;
    }

    .nova-mega-ad-stage {
        min-height: 205px;
        margin-bottom: 10px;
    }

    .nova-mega-ad-copy {
        left: 13px;
        right: 13px;
        bottom: 13px;
    }

    .nova-mega-ad-title {
        max-width: 165px;
        font-size: 21px;
    }

    .nova-mega-ad-text {
        display: none;
    }

    .nova-mega-ad-mark {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .nova-mega-title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .nova-mega-pitch {
        margin-bottom: 10px;
    }

    .nova-mega-pitch span:nth-child(1),
    .nova-mega-pitch span:nth-child(4) {
        font-size: 1.05rem;
    }

    .nova-mega-pitch span:nth-child(2) {
        font-size: 1.5rem;
    }

    .nova-mega-pitch span:nth-child(3) {
        font-size: 1rem;
    }

    .nova-mega-cta {
        padding: 9px 12px;
        font-size: 10px;
    }

    .nova-mega-groups {
        gap: 8px;
    }

    .nova-mega-group {
        padding: 9px;
    }

    .nova-mega-list {
        gap: 5px;
    }

    .nova-mega-list a {
        padding: 7px 8px;
    }

    .nova-mega-link-copy span {
        display: none;
    }
}

@media (max-width: 1023px){
    .desktop-only-btn,
    .nova-header-right .social-link {
        display: none !important;
    }
    .nova-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 5%;
        position: relative;
    }

    .nova-logo img {
        max-height: 56px;
    }

    .main-header.scrolled .nova-navbar {
        padding: 6px 5%;
    }

    .main-header.scrolled .nova-logo img {
        max-height: 44px;
    }

    body.menu-open .nova-logo {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nova-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background:
            radial-gradient(circle at 20% 20%, rgba(125, 83, 235, 0.20), transparent 30%),
            radial-gradient(circle at 80% 70%, rgba(198, 255, 51, 0.14), transparent 28%),
            rgba(3, 5, 10, 0.58);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 2040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    body.menu-open .nova-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .nova-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        cursor: pointer;
        z-index: 2105;
        position: relative;
        flex-shrink: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        transition: transform 0.35s ease;
    }

    .nova-mobile-toggle::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        background: radial-gradient(circle at center, rgba(198,255,51,0.14), transparent 52%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .nova-mobile-toggle:hover {
        transform: scale(1.06);
    }

    .nova-mobile-toggle:hover::before {
        opacity: 1;
        transform: scale(1.08);
    }

    .nova-mobile-toggle-inner {
        position: relative;
        width: 28px;
        height: 20px;
        z-index: 2;
    }

    .nova-mobile-toggle .bar {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #ffffff;
        border-radius: 999px;
        transform-origin: center;
        transition:
            transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.3s ease,
            width 0.35s ease,
            background 0.3s ease,
            box-shadow 0.35s ease;
        box-shadow: 0 0 12px rgba(255,255,255,0.08);
    }

    .nova-mobile-toggle .bar:nth-child(1) {
        top: 0;
        width: 100%;
    }

    .nova-mobile-toggle .bar:nth-child(2) {
        top: 9px;
        width: 75%;
        left: auto;
        right: 0;
    }

    .nova-mobile-toggle .bar:nth-child(3) {
        top: 18px;
        width: 100%;
    }

    body.menu-open .nova-mobile-toggle .bar {
        background: #C6FF33;
        box-shadow: 0 0 14px rgba(198,255,51,0.28);
    }

    body.menu-open .nova-mobile-toggle .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    body.menu-open .nova-mobile-toggle .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0.2);
    }

    body.menu-open .nova-mobile-toggle .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nova-nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 440px;
        height: 100vh;
        background:
            linear-gradient(180deg, rgba(10, 12, 18, 0.98) 0%, rgba(5, 7, 12, 0.98) 100%);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        z-index: 2050;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 28px 30px;
        overflow-y: auto;
        transition: right 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        isolation: isolate;
    }

    .nova-mobile-panel-glow,
    .nova-mobile-panel-grid,
    .nova-mobile-panel-noise {
        display: block;
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .nova-mobile-panel-glow {
        z-index: 0;
        background:
            radial-gradient(circle at 18% 18%, rgba(125,83,235,0.22), transparent 26%),
            radial-gradient(circle at 82% 72%, rgba(198,255,51,0.16), transparent 24%),
            radial-gradient(circle at 60% 28%, rgba(255,255,255,0.05), transparent 22%);
    }

    .nova-mobile-panel-grid {
        z-index: 0;
        opacity: 0.14;
        background:
            linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,0.55));
        -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,0.55));
    }

    .nova-mobile-panel-noise {
        z-index: 0;
        opacity: 0.05;
        background-image: url("../../../images/ui/asfalt-light-WlTWgi7.svg");
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .nova-nav-wrapper {
        right: 0;
    }

    .nova-mobile-menu-header,
    .nova-mobile-divider,
    .nova-mobile-divider-secondary,
    .nova-nav-links,
    .nova-mobile-pitch,
    .nova-mobile-cta,
    .nova-mobile-trust,
    .nova-menu-bottom {
        position: relative;
        z-index: 2;
    }

    .nova-mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        gap: 16px;
        min-height: 62px;
    }

    .nova-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-decoration: none;
        flex: 1;
        min-width: 0;
        height: 62px;
    }

    .nova-mobile-logo img {
        display: block;
        width: auto;
        height: 62px;
        max-width: 210px;
        object-fit: contain;
        filter: drop-shadow(0 8px 24px rgba(0,0,0,0.18));
    }

    .nova-mobile-close {
        display: none !important;
    }

    .nova-mobile-divider,
    .nova-mobile-divider-secondary {
        display: block;
        width: 78%;
        max-width: 300px;
        height: 1px;
        min-height: 1px;
        align-self: center;
        margin-left: auto;
        margin-right: auto;
        border-radius: 999px;
        background: linear-gradient(
            90deg,
            rgba(198,255,51,0) 0%,
            rgba(198,255,51,0.12) 10%,
            rgba(198,255,51,0.95) 50%,
            rgba(198,255,51,0.12) 90%,
            rgba(198,255,51,0) 100%
        );
        box-shadow:
            0 0 8px rgba(198,255,51,0.38),
            0 0 18px rgba(198,255,51,0.22),
            0 0 30px rgba(198,255,51,0.10);
        opacity: 1;
    }

    .nova-mobile-divider {
        margin-top: 6px;
        margin-bottom: 18px;
    }

    .nova-mobile-divider-secondary {
        margin-top: 14px;
        margin-bottom: 18px;
    }

    .nova-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nova-nav-links li {
        width: 100%;
    }

    .nova-nav-links li a,
    .nova-nav-links li button {
        position: relative;
        font-size: clamp(2rem, 5vw, 2.8rem);
        line-height: 1.02;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #ffffff;
        opacity: 0.7;
        transition: color 0.25s ease, opacity 0.25s ease;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        background: transparent;
        border: 0;
        text-transform: none;
        font-family: inherit;
        text-align: left;
    }

    .nova-nav-links li a::before,
    .nova-nav-links li button::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 4px;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: #C6FF33;
        opacity: 0;
        transition: width 0.25s ease, opacity 0.25s ease;
    }

    .nova-nav-links li a:hover,
    .nova-nav-links li button:hover {
        color: #ffffff;
        opacity: 1;
    }

    .nova-nav-links li a.is-active,
    .nova-nav-links li a[aria-current="page"],
    .nova-nav-links li button.is-active,
    .nova-nav-links li.nova-mobile-dropdown-open > button {
        color: #C6FF33;
        opacity: 1;
    }

    .nova-nav-links li.nova-mobile-dropdown-open > button::before {
        width: 72px;
        opacity: 1;
    }

    .nova-nav-caret {
        font-size: 16px;
    }

    .nova-mega-menu {
        display: none !important;
    }

    .nova-mobile-submenu {
        display: none;
        width: 100%;
        margin-top: 8px;
        padding: 18px 16px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
        border: 1px solid rgba(255,255,255,0.06);
    }

    .nova-mobile-dropdown-open .nova-mobile-submenu {
        display: block;
    }

    .nova-mobile-submenu-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .nova-mobile-submenu-group {
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nova-mobile-submenu-group:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .nova-mobile-submenu-title {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 10px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .nova-mobile-submenu-title i {
        color: #C6FF33;
    }

    .nova-mobile-submenu-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nova-mobile-submenu-list a {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        text-decoration: none;
        color: rgba(255,255,255,0.78);
        font-size: 13px;
        line-height: 1.45;
        background: rgba(255,255,255,0.02);
        border: 1px solid transparent;
        transition: all 0.25s ease;
    }

    .nova-mobile-submenu-list a:hover,
    .nova-mobile-submenu-list a.is-active {
        color: #ffffff;
        border-color: rgba(198,255,51,0.16);
        background: rgba(198,255,51,0.05);
    }

    .nova-mobile-pitch {
        display: block;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 4px;
    }

    .nova-mobile-pitch span {
        display: block;
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: -0.04em;
        line-height: 0.9;
    }

    .nova-mobile-pitch span:nth-child(1) {
        font-size: clamp(1.55rem, 4vw, 2rem);
        color: #C6FF33;
    }

    .nova-mobile-pitch span:nth-child(2) {
        font-size: clamp(2.15rem, 6vw, 2.9rem);
        color: #f5f6fa;
    }

    .nova-mobile-pitch span:nth-child(3) {
        font-size: clamp(1.45rem, 4vw, 1.95rem);
        color: #C6FF33;
    }

    .nova-mobile-pitch span:nth-child(4) {
        font-size: clamp(1.55rem, 4vw, 2rem);
        color: #f5f6fa;
    }

    .nova-mobile-cta {
        display: flex;
        width: 100%;
        margin-top: 4px;
    }

    .nova-mobile-cta .nova-btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        min-height: 56px;
        font-size: 13px;
        letter-spacing: 0.04em;
        box-shadow:
            0 12px 30px rgba(198,255,51,0.18),
            0 0 0 1px rgba(255,255,255,0.04) inset;
    }

    .nova-menu-bottom {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: auto;
        padding-top: 6px;
    }

    .nova-menu-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(198,255,51,0.24), rgba(125,83,235,0.18), rgba(255,255,255,0.05));
        margin-bottom: 20px;
    }

    .nova-menu-socials {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .nova-menu-socials a {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.82);
        font-size: 18px;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
        border: 1px solid rgba(255,255,255,0.06);
        box-shadow:
            0 10px 24px rgba(0,0,0,0.16),
            inset 0 1px 0 rgba(255,255,255,0.05);
        transition: 0.3s;
    }

    .nova-menu-socials a:hover {
        color: #C6FF33;
        transform: translateY(-3px);
        border-color: rgba(198,255,51,0.24);
        box-shadow:
            0 14px 28px rgba(0,0,0,0.22),
            0 0 18px rgba(198,255,51,0.10);
    }

    .nova-menu-animate {
        opacity: 0;
        transform: translateX(34px) scale(0.98);
        transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    }

    body.menu-open .nova-menu-animate {
        opacity: 1;
        transform: translateX(0) scale(1);
        transition-delay: calc(0.10s + (0.05s * var(--i)));
    }
}

@media (max-width: 400px) {
    .nova-nav-wrapper {
        width: 100%;
        max-width: 100%;
        border-left: none;
        padding: 20px 22px 28px;
    }

    .nova-mobile-logo {
        height: 56px;
    }

    .nova-mobile-logo img {
        height: 56px;
        max-width: 190px;
    }

    .nova-mobile-toggle {
        width: 38px;
        height: 38px;
    }

    .nova-nav-links li a,
    .nova-nav-links li button {
        font-size: 30px;
    }

    .nova-menu-socials a {
        width: 44px;
        height: 44px;
    }
}

.tc-inline-e118214dbc83 {
    --i: 0;
}
.tc-inline-7c027b710e66 {
    --i: 1;
}
.tc-inline-0de645cd1351 {
    --i: 2;
}
.tc-inline-408350e06316 {
    --i: 3;
}
.tc-inline-5a246a0d6783 {
    --i: 4;
}
.tc-inline-6ec9da0ec35b {
    --i: 5;
}
.tc-inline-119c314856e1 {
    --i: 6;
}
.tc-inline-1dd6baf84ba4 {
    --i: 7;
}
.tc-inline-80dcd3a80cf5 {
    --i: 8;
}
.tc-inline-1af7db9b1574 {
    --i: 9;
}
.tc-inline-f66e58dbe1b2 {
    --i: 10;
}
.tc-inline-9a3927a6289a {
    --i: 12;
}

.nova-menu-socials .nova-menu-animate:nth-child(1) {
    --i: 13;
}
.nova-menu-socials .nova-menu-animate:nth-child(2) {
    --i: 14;
}
.nova-menu-socials .nova-menu-animate:nth-child(3) {
    --i: 15;
}
.nova-menu-socials .nova-menu-animate:nth-child(4) {
    --i: 16;
}
.nova-menu-socials .nova-menu-animate:nth-child(5) {
    --i: 17;
}
.nova-menu-socials .nova-menu-animate:nth-child(6) {
    --i: 18;
}
.nova-menu-socials .nova-menu-animate:nth-child(7) {
    --i: 19;
}
.nova-menu-socials .nova-menu-animate:nth-child(8) {
    --i: 20;
}
