:root {
            /* Premium Style Palette */
            --bexon-dark: #0B0F19;
            --bexon-accent: #D1AA57; /* Luminous Lime Gold */
            --bexon-accent-dim: rgba(209, 170, 87, 0.15);
            --bexon-gray-dark: #121824;
            --bexon-gray-light: #F4F5F8;
            --bexon-border: #E4E7EC;
            --bexon-border-dark: #1F2937;
            --bexon-text-dark: #0B0F19;
            --bexon-text-muted: #5C6470;
            /* Vertical Colors */
            --v-home: #C05F38;
            --v-boat: #2A7D9B;
            --v-air: #54619C;
            --v-rv: #3C7A52;
            --v-llc: #7A3340;
            --v-spv: #9C7322;
            --v-married: #C14D6B;
            --v-coparent: #5E7689;
			 --pricing-navy: #00293a;
            --pricing-gold: #c4a052;
            --pricing-panel: #cceef9;
            --pricing-text: #0c283a;
            --pricing-muted: #5a6b75;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bexon-gray-light);
            color: var(--bexon-text-dark);
            font-size: 16px;
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Mona Sans', sans-serif;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .italic-accent {
            font-family: 'Mona Sans', sans-serif;
            font-style: italic;
            font-weight: 800;
            color: var(--bexon-accent);
            letter-spacing: -0.03em;
        }

        .wrap {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* PROMO BAR */
        .promo {
            background: var(--bexon-dark);
            color: #fff;
            text-align: center;
            font-size: 0.85rem;
            padding: 12px 44px 12px 20px;
            position: relative;
            font-weight: 500;
            letter-spacing: 0.02em;
            border-bottom: 1px solid var(--bexon-border-dark);
            z-index: 101;
        }

            .promo strong {
                color: var(--bexon-accent);
                font-weight: 700;
            }

        .promo-close {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

            .promo-close:hover {
                opacity: 1;
                color: var(--bexon-accent);
            }

        .promo.hide {
            display: none;
        }

        /* STICKY TRANSPARENT NAV */
        nav {
            position: fixed;
            top: 45px; /* Sits below the promo bar initially */
            left: 0;
            right: 0;
            z-index: 100;
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body.promo-closed nav {
            top: 0;
        }

        /* Scrolled State for Nav (White High Contrast) */
        nav.scrolled {
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--bexon-border);
            box-shadow: 0 10px 30px -10px rgba(11, 15, 25, 0.08);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

            .nav-links a.link,
            .nav-links button.link-btn {
                font-size: 0.85rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                color: rgba(255, 255, 255, 0.8);
                transition: all .3s ease;
                background: none;
                border: none;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

                .nav-links a.link:hover,
                .nav-links button.link-btn:hover {
                    color: #fff;
                }

        /* Scrolled Link Theme Variables */
        nav.scrolled .nav-links a.link,
        nav.scrolled .nav-links button.link-btn {
            color: var(--bexon-text-muted);
        }

            nav.scrolled .nav-links a.link:hover,
            nav.scrolled .nav-links button.link-btn:hover {
                color: var(--bexon-text-dark);
            }

        .nav-cta {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: var(--bexon-accent);
            color: var(--bexon-dark) !important;
            padding: 12px 28px;
            border-radius: 4px;
            transition: all .25s ease;
        }

            .nav-cta:hover {
                background: #fff;
                color: var(--bexon-dark) !important;
                box-shadow: 0 8px 20px -6px rgba(255, 255, 255, 0.3);
            }

        nav.scrolled .nav-cta {
            background: rgb(0, 41, 58);
            color: #fff !important;
        }

            nav.scrolled .nav-cta:hover {
                background: var(--bexon-accent);
                color: var(--bexon-dark) !important;
                box-shadow: 0 8px 20px -6px rgba(209, 170, 87, 0.6);
            }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }

            .nav-toggle span {
                display: block;
                width: 24px;
                height: 2px;
                background: #fff;
                margin: 5px 0;
                transition: 0.3s;
            }

        nav.scrolled .nav-toggle span {
            background: var(--bexon-dark);
        }
		
		  nav.scrolled .nav-toggle.active span {
            background: #fff;
        }
		
		

        /* DROPDOWN NAVIGATION COMPONENT */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #fff;
            border: 1px solid var(--bexon-border);
            border-radius: 8px;
            box-shadow: 0 20px 40px -10px rgba(11, 15, 25, 0.15);
            width: 280px;
            padding: 12px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 120;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 10px 16px;
            border-radius: 6px;
            color: var(--bexon-text-muted) !important;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 3px solid transparent;
        }

            .dropdown-item:hover {
                background: var(--bexon-gray-light);
                color: var(--bexon-text-dark) !important;
            }

        .dropdown-divider {
            height: 1px;
            background: var(--bexon-border);
            margin: 6px 0;
        }

        /* PREMIUM HERO (REDUCED HEIGHT) */
        .hero {
            position: relative;
            min-height: 91vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--bexon-dark);
            padding-top: 80px;
            padding-bottom: 60px;
        }

        /* Single Video Container */
        .hero-slide-container {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-video-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1;
        }

            .hero-video-slide.active {
                opacity: 0.45;
                z-index: 2;
            }

            .hero-video-slide video {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .hero-overlay {
            position: absolute;
            inset: 0;
            /*background: linear-gradient(180deg, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.1) 60%, rgba(11, 15, 25, 0.9) 100%);  */
            z-index: 3;
        }

        /* Hero bottom wave divider */
        .overalysvg {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 5;
        }

            .overalysvg svg {
                width: 100%;
                height: 45px;
                display: block;
            }

        .hero-inner {
            position: relative;
            z-index: 10;
            padding: 80px 40px 100px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-badge {
            display: inline-block;
            background: var(--bexon-accent-dim);
            border: 1px solid var(--bexon-accent);
            color: var(--bexon-accent);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            padding: 6px 16px;
            border-radius: 4px;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: clamp(2.3rem, 4.5vw, 3.5rem);
            color: #fff;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-sub-title {
            font-size: clamp(1.1rem, 1.8vw, 1.45rem);
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
        }

        .hero-sub {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.65);
            max-width: 780px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary-hero {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            background: var(--bexon-accent);
            color: var(--bexon-dark);
            padding: 16px 36px;
            border-radius: 4px;
            transition: all .25s ease;
            display: inline-block;
        }

            .btn-primary-hero:hover {
                transform: translateY(-3px);
                box-shadow: 0 16px 30px -8px rgba(209, 170, 87, 0.5);
            }

        .btn-ghost-hero {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            border: 1.5px solid rgba(255,255,255,0.3);
            color: #fff;
            padding: 16px 36px;
            border-radius: 4px;
            transition: all .25s ease;
            display: inline-block;
        }

            .btn-ghost-hero:hover {
                background: rgba(255,255,255,0.08);
                border-color: #fff;
                transform: translateY(-3px);
            }

        /* ROTATING TICKER FOR VERTICALS */
        .vertical-ticker {
            background: rgb(0, 41, 58);
            overflow: hidden;
            padding: 0px 0px 10px;
            position: relative;
            z-index: 20;
        }

            .vertical-ticker::before, .vertical-ticker::after {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                width: 150px;
                z-index: 2;
                pointer-events: none;
            }

            .vertical-ticker::before {
                left: 0;
                background: linear-gradient(to right, rgb(0, 41, 58), transparent);
            }

            .vertical-ticker::after {
                right: 0;
                background: linear-gradient(to left, rgb(0, 41, 58), transparent);
            }

        .ticker-track {
            display: flex;
            width: max-content;
            animation: marquee 35s linear infinite;
        }

            .ticker-track:hover {
                animation-play-state: paused;
            }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 0 40px;
            color: rgba(255, 255, 255, 0.7);
            font-family: 'Mona Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }

            .ticker-item:hover {
                color: #fff;
            }

        .ticker-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.04);
            padding: 6px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            color: var(--v-color);
        }

        .ticker-item:hover .ticker-icon {
            background: var(--v-color-glow);
            box-shadow: 0 0 15px var(--v-color);
            transform: scale(1.1);
            color: #fff;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-33.3333%);
            }
        }

        /* STATS */
        .stats {
            background: var(--bexon-gray-light);
            padding: 50px 40px;
        }

        .stats-wrap {
            max-width: 1400px;
            margin: 0 auto;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--bexon-border);
            box-shadow: 0 4px 24px -10px rgba(11, 15, 25, 0.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat {
            padding: 40px 30px;
            border-right: 1px solid var(--bexon-border);
            position: relative;
        }

            .stat:last-child {
                border-right: none;
            }

            .stat .s-num {
                font-size: 2.8rem;
                font-weight: 800;
                color: var(--bexon-dark);
                line-height: 1;
                letter-spacing: -0.03em;
            }

            .stat .s-label {
                font-size: 0.85rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: var(--bexon-text-muted);
                margin-top: 10px;
            }

            .stat::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 25px;
                height: 3px;
                background: var(--bexon-dark);
            }

        /* SECTIONS */
        .pad {
            padding: 80px 0;
        }

        .section-head {
            max-width: 850px;
            margin-bottom: 60px;
        }

            .section-head.center {
                margin: 0 auto 70px;
                text-align: center;
            }

            .section-head h2 {
                font-size: clamp(2.2rem, 4vw, 3.4rem);
                font-weight: 800;
                color: rgb(0, 41, 58);
                letter-spacing: -0.02em;
                margin-top: 12px;
            }

            .section-head p {
                color: var(--bexon-text-muted);
                font-size: 1.1rem;
                line-height: 1.8;
                margin-top: 16px;
            }

        .eyebrow {
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--bexon-text-muted);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

            .eyebrow::before {
                content: '';
                display: inline-block;
                width: 6px;
                height: 6px;
                background: var(--bexon-accent);
                border: 1px solid var(--bexon-dark);
                transform: rotate(45deg);
            }

        /* CO-OWNERSHIP FRICTION */
        .friction {
            background: rgb(0, 41, 58);
            color: #fff;
        }

            .friction .section-head h2 {
                color: #fff;
            }

            .friction .section-head p {
                color: rgba(255,255,255,0.6);
            }

            .friction .eyebrow {
                color: rgba(255, 255, 255, 0.4);
            }

                .friction .eyebrow::before {
                    background: var(--bexon-accent);
                    border-color: transparent;
                }

        .fric-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            overflow: hidden;
        }

        .fric {
            background: rgba(0,0,0,.3);
            padding: 48px 40px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

            .fric::after {
                content: '';
                position: absolute;
                inset: 0;
                border: 1.5px solid transparent;
                transition: all 0.3s ease;
                pointer-events: none;
            }

            .fric:hover {
                background: var(--bexon-gray-dark);
            }

                .fric:hover::after {
                    border-color: var(--bexon-accent);
                }

            .fric h3 {
                font-size: 1.3rem;
                font-weight: 700;
                color: #fff;
                margin-bottom: 12px;
                display: flex;
                align-items: center;
                gap: 12px;
            }

                .fric h3 span.fric-num {
                    font-size: 0.85rem;
                    font-weight: 800;
                    color: var(--bexon-accent);
                    border: 1px solid rgba(209, 170, 87, 0.3);
                    padding: 2px 8px;
                    border-radius: 3px;
                }

            .fric p {
                font-size: 0.98rem;
                color: rgba(255,255,255,0.5);
            }

        /* SOLUTIONS / VERTICAL CARDS */
        .group-label {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

            .group-label .gl-text {
                font-family: 'Mona Sans', sans-serif;
                font-size: 1.1rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: var(--bexon-text-dark);
            }

            .group-label .gl-sub {
                font-size: 0.88rem;
                color: var(--bexon-text-muted);
                font-weight: 500;
            }

            .group-label .gl-line {
                flex: 1;
                height: 1.5px;
                background: var(--bexon-border);
            }

        .vgrid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .vgrid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .group {
            margin-top: 64px;
        }

            .group:first-of-type {
                margin-top: 48px;
            }

        /* Vertical Luxury Card */
        .vcard {
            background: #fff;
            border: 1px solid var(--bexon-border);
            border-radius: 6px;
            position: relative;
            overflow: hidden;
            transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }

            .vcard:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px -15px rgba(11, 15, 25, 0.12);
                border-color: var(--bexon-text-dark);
            }

        .vcard-img-wrap {
            overflow: hidden;
            position: relative;
            height: 260px;
            background: #e9ebee;
        }

        .vcard-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .vcard:hover .vcard-img {
            transform: scale(1.08);
        }

        .vcard-accent-strip {
            height: 4px;
            width: 100%;
            background: var(--vc);
        }

        .vcard-body {
            padding: 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .vcard h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--bexon-text-dark);
            margin-bottom: 8px;
        }

        .vcard p {
            color: var(--bexon-text-muted);
            font-size: 0.95rem;
            flex: 1;
            line-height: 1.6;
        }

        .vcard-link {
            margin-top: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--bexon-text-dark);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s;
        }

            .vcard-link svg {
                transition: transform .25s ease;
                stroke: var(--bexon-text-dark);
            }

        .vcard:hover .vcard-link {
            color: var(--bexon-text-dark);
        }

            .vcard:hover .vcard-link svg {
                transform: translateX(6px);
            }

        .vcard-soon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            background: var(--bexon-dark);
            padding: 4px 12px;
            border-radius: 3px;
            z-index: 2;
        }

        /* HOW IT WORKS (WHITE BACKGROUND SYSTEM) */
        .how {
            background: #fff;
            color: var(--bexon-text-dark);
        }

            .how .section-head h2 {
                color: var(--bexon-text-dark);
            }

            .how .eyebrow {
                color: var(--bexon-text-muted);
            }

                .how .eyebrow::before {
                    background: var(--bexon-accent);
                    border-color: var(--bexon-dark);
                }

            .how .section-head p {
                color: var(--bexon-text-muted);
            }

        .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            margin-top: 60px;
            background: var(--bexon-border);
            border: 2px solid var(--bexon-border);
            border-radius: 8px;
            overflow: hidden;
        }

        .how-item {
            background: #fff;
            padding: 35px 21px;
            transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

            .how-item .itemimg {
                border: 1px solid #e1e1e1;
                margin-bottom: 16px;
                border-radius: 10px;
                overflow: hidden;
                height: 235px;
                position: relative;
                cursor: pointer;
            }
        /* OVERLAY */
        .itemimg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
            opacity: 0;
            transition: 0.3s ease;
            z-index: 1;
        }

        .itemimg:hover::before {
            opacity: 1;
        }

        /* ICON */
        .itemimg::after {
            content: "+";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: #fff;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 300;
            line-height: 1;
            transform: translate(-50%, -50%) scale(0.7);
            opacity: 0;
            transition: 0.3s ease;
            z-index: 2;
            pointer-events: none;
            padding-bottom: 0px;
            font-family: auto;
        }

        .itemimg:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .how-item::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1.5px solid transparent;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .how-item:hover {
            background: var(--bexon-gray-light);
        }

            .how-item:hover::after {
                border-color: var(--bexon-dark);
            }

        .how-ico {
            width: 44px;
            height: 44px;
            margin-bottom: 24px;
        }

        .how-item h3 {
            color: var(--bexon-text-dark);
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .how-item p {
            color: var(--bexon-text-muted);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .how-foot {
            margin-top: 48px;
            text-align: center;
            color: var(--bexon-text-muted);
            font-size: 1.05rem;
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

            .how-foot b {
                color: var(--v-boat);
                font-weight: 700;
            }

        /* PLATFORM VIDEO TOUR SECTION */
        .video-section {
            background: var(--bexon-dark);
            color: #fff;
            position: relative;
        }

        .video-container {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
            overflow: hidden;
        }

        /* WHY SPLIYT */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .why-card {
            background: #fff;
            border: 1px solid var(--bexon-border);
            border-radius: 6px;
            padding: 44px 36px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

            .why-card:hover {
                transform: translateY(-6px);
                border-color: var(--bexon-text-dark);
                box-shadow: 0 16px 30px -10px rgba(11, 15, 25, 0.08);
            }

        .why-ico {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
        }

        .why-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--bexon-text-dark);
            margin-bottom: 12px;
        }

        .why-card p {
            color: var(--bexon-text-muted);
            font-size: 0.98rem;
            line-height: 1.65;
        }

        .trust-strip {
            margin-top: 48px;
            padding: 24px 32px;
            background: var(--bexon-dark);
            border-radius: 6px;
            color: rgba(255,255,255,0.7);
            display: flex;
            flex-wrap: wrap;
            gap: 16px 36px;
            justify-content: center;
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

            .trust-strip span {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .trust-strip .td {
                width: 8px;
                height: 8px;
                border-radius: 1px;
                background: var(--bexon-accent);
                transform: rotate(45deg);
            }

            .trust-strip b {
                color: #fff;
                font-weight: 700;
            }

        /* HONEST PRICING WITH soft-blue sky background */
        .pricing {
            background: #cceef9;
        }

        .price-panel {
            margin-top: 60px;
            background: #fff;
            border: 1px solid rgba(11, 15, 25, 0.08);
            border-radius: 8px;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            overflow: hidden;
            box-shadow: 0 20px 50px -25px rgba(0, 41, 58, 0.15);
        }

        .price-left {
            padding: 56px 48px;
        }

            .price-left .pl-range {
                display: flex;
                align-items: baseline;
                gap: 10px;
                margin: 12px 0 6px;
                flex-wrap: wrap;
            }

            .price-left .pl-from {
                font-size: 1.1rem;
                color: var(--bexon-text-muted);
                font-weight: 600;
            }

            .price-left .pl-num {
                font-size: 3.5rem;
                font-weight: 800;
                line-height: 1;
                color: var(--bexon-text-dark);
                letter-spacing: -0.04em;
            }

            .price-left .pl-per {
                color: var(--bexon-text-muted);
                font-size: 1rem;
                font-weight: 600;
            }

            .price-left .pl-note {
                margin-top: 12px;
                font-size: 0.95rem;
                color: var(--bexon-text-dark);
                font-weight: 700;
                display: inline-flex;
                align-items: center;
                gap: 8px;
            }

                .price-left .pl-note::before {
                    content: '';
                    display: inline-block;
                    width: 6px;
                    height: 6px;
                    background: var(--bexon-accent);
                    border: 1px solid var(--bexon-text-dark);
                    transform: rotate(45deg);
                }

            .price-left p {
                color: var(--bexon-text-muted);
                font-size: 1rem;
                margin-top: 20px;
                line-height: 1.7;
            }

            .price-left .btn {
                margin-top: 32px;
                display: inline-block;
                font-size: 0.85rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.1em;
                background: var(--bexon-dark);
                color: #fff;
                padding: 16px 36px;
                border-radius: 4px;
                transition: all .25s ease;
            }

                .price-left .btn:hover {
                    background: var(--bexon-accent);
                    color: var(--bexon-dark);
                    box-shadow: 0 8px 24px -6px rgba(209, 170, 87, 0.5);
                }

        .price-right {
            background: rgb(0, 41, 58);
            color: #fff;
            padding: 56px 48px;
            border-left: 1px solid var(--bexon-border-dark);
        }

            .price-right h3 {
                color: var(--bexon-accent);
                font-size: 0.8rem;
                font-weight: 800;
                letter-spacing: 0.15em;
                text-transform: uppercase;
                margin-bottom: 24px;
            }

            .price-right ul {
                list-style: none;
            }

            .price-right li {
                display: flex;
                gap: 14px;
                align-items: flex-start;
                padding: 12px 0;
                font-size: 0.98rem;
                color: rgba(255,255,255,0.7);
            }

                .price-right li svg {
                    fill: var(--bexon-accent);
                }

                .price-right li b {
                    color: #fff;
                    font-weight: 700;
                }

        /* ACCORDION */
        .faq-list {
            margin-top: 50px;
            max-width: 880px;
        }

        .faq-item {
            border-bottom: 1.5px solid var(--bexon-border);
            transition: border-color 0.3s;
        }

            .faq-item:first-child {
                border-top: 1.5px solid var(--bexon-border);
            }

        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            padding: 26px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-family: 'Mona Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--bexon-text-dark);
            transition: all 0.2s ease;
        }

            .faq-q:hover {
                color: var(--bexon-text-dark);
                padding-left: 16px;
            }

        .faq-ico {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border: 1.5px solid var(--bexon-dark);
            border-radius: 50%;
            position: relative;
            transition: all .25s ease;
        }

            .faq-ico::before, .faq-ico::after {
                content: "";
                position: absolute;
                background: var(--bexon-dark);
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                transition: all .25s ease;
            }

            .faq-ico::before {
                width: 12px;
                height: 2px;
            }

            .faq-ico::after {
                width: 2px;
                height: 12px;
            }

        .faq-item.open {
            border-color: var(--bexon-text-dark);
        }

            .faq-item.open .faq-ico {
                background: var(--bexon-accent);
                border-color: var(--bexon-dark);
            }

                .faq-item.open .faq-ico::after {
                    transform: translate(-50%,-50%) rotate(90deg) scale(0);
                }

                .faq-item.open .faq-ico::before {
                    background: var(--bexon-dark);
                }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s cubic-bezier(0.16, 1, 0.3, 1);
        }

            .faq-a p {
                color: var(--bexon-text-muted);
                font-size: 1rem;
                padding: 0 12px 26px;
                max-width: 780px;
                line-height: 1.75;
            }

        /* BACK TO TOP BUTTON */
        .back-to-top {
            position: fixed;
            bottom: 90px;
            right: 18px;
            background: var(--bexon-dark);
            color: #fff;
            border: 1px solid var(--bexon-accent);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
        }

            .back-to-top:hover {
                background: var(--bexon-accent);
                color: var(--bexon-dark);
                transform: translateY(-5px);
                box-shadow: 0 15px 30px -5px rgba(209, 170, 87, 0.4);
            }

            .back-to-top.visible {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

        /* FINAL CALL-TO-ACTION (WHITE BACKGROUND SYSTEM) */
        .final {
            background: #fff;
            padding: 100px 0;
        }

        .final-inner {
            max-width: 920px;
            margin: 0 auto;
            border: 2px solid var(--bexon-dark);
            background: #fff;
            border-radius: 8px;
            padding: 70px 50px;
            position: relative;
            text-align: center;
            box-shadow: 0 30px 60px -15px rgba(11, 15, 25, 0.08);
        }

            .final-inner::before {
                content: "";
                position: absolute;
                top: -2px;
                left: -2px;
                width: 36px;
                height: 36px;
                border-top: 5px solid var(--bexon-accent);
                border-left: 5px solid var(--bexon-accent);
            }

            .final-inner::after {
                content: "";
                position: absolute;
                bottom: -2px;
                right: -2px;
                width: 36px;
                height: 36px;
                border-bottom: 5px solid var(--bexon-accent);
                border-right: 5px solid var(--bexon-accent);
            }

        .final h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--bexon-text-dark);
            margin-bottom: 16px;
            letter-spacing: -0.03em;
        }

        .final p {
            color: var(--bexon-text-muted);
            max-width: 580px;
            margin: 0 auto 36px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .final-cta {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            background: var(--bexon-dark);
            color: #fff;
            padding: 18px 56px;
            border-radius: 4px;
            transition: all .25s ease;
        }

            .final-cta:hover {
                background: var(--bexon-accent);
                color: var(--bexon-dark);
                transform: translateY(-2px);
                box-shadow: 0 12px 28px -6px rgba(209, 170, 87, 0.5);
            }

        .final-trust {
            margin-top: 20px;
            font-size: 0.85rem;
            color: var(--bexon-text-muted);
            font-weight: 600;
        }

        /* LUXURY DARK FOOTER */
        footer {
            background: var(--bexon-dark);
            color: rgba(255,255,255,0.6);
            padding: 90px 0 40px;
            border-top: 1px solid var(--bexon-border-dark);
        }
        /* Adjusted grid-template-columns dynamically to be exactly 4 columns */
        .foot-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
        }

        .foot-brand p {
            margin-top: 18px;
            font-size: 0.95rem;
            max-width: 320px;
            color: rgba(255,255,255,0.45);
            line-height: 1.75;
        }

        .foot-col h4 {
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--bexon-accent);
            margin-bottom: 20px;
        }

        .foot-col a {
            display: block;
            font-size: 0.92rem;
            padding: 6px 0;
            color: rgba(255,255,255,0.45);
            transition: all .2s ease;
        }

            .foot-col a:hover {
                color: #fff;
                padding-left: 4px;
            }

        .foot-bottom {
            margin-top: 64px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.3);
            font-weight: 500;
        }

        /* REVEAL TRANSITIONS */
        .reveal {
            transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .js .reveal {
            opacity: 0;
            transform: translateY(30px);
        }

            .js .reveal.in {
                opacity: 1;
                transform: translateY(0);
            }

        .reveal-hero {
            opacity: 0;
            transform: translateY(25px);
            animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .d1 {
            animation-delay: .1s;
        }

        .d2 {
            animation-delay: .25s;
        }

        .d3 {
            animation-delay: .4s;
        }

        .d4 {
            animation-delay: .55s;
        }

        .d5 {
            animation-delay: .7s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        div#solutionsDropdown {
            top: -1px;
        }
		
		/* start package page */
		 .inner-header {
            background: linear-gradient(0deg, rgba(11, 15, 25, 0.88), rgba(11, 15, 25, 0.8)), url('../img/bg-rv.jpg') center/cover no-repeat;
            padding-top: 160px;
            padding-bottom: 120px;
            position: relative;
            overflow: hidden;
        }
		        .inner-header-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(209, 170, 87, 0.15) 0%, transparent 60%);
            z-index: 1;
        }
.page-pricing {
            padding: 0 0 40px;
        }

        .our-pricing-box {
            text-align: center;
        }

        .manage-pricing__plan-toggle-wrap {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            margin-bottom: 2.5rem;
        }

        .manage-pricing__plan-toggle {
            position: relative;
            display: inline-grid;
            grid-template-columns: 1fr 1fr;
            align-items: stretch;
            min-width: 16.5rem;
            padding: 0;
            background: #fff;
            border: 1px solid rgba(0, 41, 58, 0.14);
            border-radius: 50px;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 8px 24px rgba(0, 41, 58, 0.08);
        }

        .manage-pricing__plan-slider {
            position: absolute;
            top: 5px;
            left: 5px;
            width: calc(50% - 5px);
            height: calc(100% - 10px);
            background: #00293a;
            border-radius: 50px;
            transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
            pointer-events: none;
        }

        .manage-pricing__plan-slider--yearly {
            transform: translateX(100%);
        }

        .manage-pricing__plan-btn {
            position: relative;
            z-index: 1;
            min-width: 7.25rem;
            padding: 0.65rem 1.5rem;
            font-family: inherit;
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: var(--pricing-muted);
            background: transparent;
            border: none;
            border-radius: 7px;
            cursor: pointer;
            transition: color 0.25s ease;
        }

            .manage-pricing__plan-btn:hover:not(.manage-pricing__plan-btn--active) {
                color: var(--pricing-text);
            }

        .manage-pricing__plan-btn--active {
            color: #fff;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
        }

        .manage-pricing__plan-btn:focus-visible {
            outline: 2px solid var(--pricing-gold);
            outline-offset: 2px;
        }

        .manage-pricing__empty {
            text-align: center;
            padding: 2rem 1rem;
            color: var(--pricing-muted);
            grid-column: 1 / -1;
        }

            .manage-pricing__empty p {
                margin: 0;
                font-size: 1rem;
            }

        .packages-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }

    
 .pricing-item {
            height: 100%;
            display: flex;
            flex-direction: column;
            text-align: left;
            background: var(--pricing-panel);
            border: 1px solid rgba(0, 41, 58, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }

            .pricing-item:hover {
                box-shadow: 0 12px 28px rgba(0, 41, 58, 0.12);
                transform: translateY(-2px);
            }

        .highlighted-box .pricing-header {
            background: var(--pricing-navy);
            color: #fff;
            padding: 1.25rem 1.35rem;
        }

        .pricing-header h2 {
            font-size: 1.15rem;
            font-weight: 800;
            margin: 0;
            color: #fff;
        }

            .pricing-header h2 span {
                display: none;
                font-size: 0.75rem;
                font-weight: 600;
                opacity: 0.85;
                margin-top: 0.35rem;
                text-transform: uppercase;
                letter-spacing: 0.06em;
            }

        .pricing-content {
            padding: 1rem 1.35rem;
            font-size: 0.9rem;
            color: var(--pricing-text);
            flex: 1;
            line-height: 1.55;
        }

            .pricing-content ul {
                list-style: disc;
                padding-left: 1.25rem;
                margin: 0.5rem 0;
            }

        .pricing-body {
            padding: 1rem 1.35rem 1.35rem;
            border-top: 1px solid rgba(0, 41, 58, 0.08);
            background: rgba(255, 255, 255, 0.45);
        }

            .pricing-body h3 {
			       font-size: 1.75rem;
					font-weight: 800;
					color: var(--pricing-navy);
					margin: 0 0 1rem;
					text-align: center;
					display: flex;
					line-height: 1.1;
					align-items: center;
					width: 100%;
					justify-content: center;
					gap: 0.25rem 0.2rem;
					padding-top: 25px;
					position: relative;
            }
			.pricing-body h3 span.price-period {
				position: relative;
				top: 2px;
			}
			.pricing-body h3 span.free-trial-price {
				position: absolute;
				top: 1px;
			}
			.pricing-body h3 span {
				font-size: 1rem;
				font-weight: 600;
				color: var(--pricing-muted);
				margin-top: 0.25rem;
				margin-right: 6px;
			}
			.pricing-body h3 span.free-trial-price {
				display: block;
			}
			.pricing-body h3 span.price-period, .pricing-body h3 span.free-trial-price {
				color: #00293a;
			}
			.pricing-content ul {
				margin: 0;
				padding: 0;
			}

            .pricing-content ul li {
                position: relative;
                padding-left: 25px;
                margin-bottom: 10px;
            }

                .pricing-content ul li svg {
                    position: absolute;
                    left: 0;
                    top: 0;
                }

        .btn-default {
            display: inline-block;
            width: 100%;
            padding: 0.75rem 1.25rem;
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--pricing-navy);
            background: var(--pricing-gold);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.15s ease;
        }

            .btn-default:hover {
                background: #a88a49;
                color: #fff;
            }

            .btn-default:focus-visible {
                outline: 2px solid var(--pricing-navy);
                outline-offset: 2px;
            }

        .manage-pricing__card {
            position: relative;
        }

        .manage-pricing__card--selected {
            box-shadow: 0 0 0 2px #13a7fd, 0 12px 28px rgba(19, 167, 253, 0.2);
            transform: translateY(-2px);
        }

        .manage-pricing__selected-pill {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 10px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #13a7fd 0%, #0d8ad4 100%);
            border-radius: 999px;
            box-shadow: 0 2px 8px rgba(19, 167, 253, 0.35);
            pointer-events: none;
        }

        .load-more-btn {
            margin-top: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: var(--pricing-navy);
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

            .load-more-btn:hover {
                background: #001f2b;
            }

        .packages-message {
            margin-bottom: 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .packages-message--error {
            background: #fef2f2;
            color: #b91c1c;
            border: 1px solid #fecaca;
        }

        .packages-loading {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(11, 15, 25, 0.45);
            backdrop-filter: blur(4px);
        }

        .packages-loading__spinner {
            width: 48px;
            height: 48px;
            border: 4px solid rgba(255,255,255,0.25);
            border-top-color: var(--bexon-accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
		        .packages-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
		    .manage-pricing__col {
            flex: 0 1 100%;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .manage-pricing__col {
                flex: 0 1 calc(50% - 0.75rem);
                max-width: calc(50% - 0.75rem);
            }
        }

        @media (min-width: 992px) {
            .manage-pricing__col {
                flex: 0 1 calc(25% - 1.125rem);
                max-width: calc(25% - 1.125rem);
            }
        }
		

        .manage-pricing__card {
            position: relative;
        }

        .manage-pricing__card--selected {
            box-shadow: 0 0 0 2px #13a7fd, 0 12px 28px rgba(19, 167, 253, 0.2);
            transform: translateY(-2px);
        }

        .manage-pricing__selected-pill {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 10px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #13a7fd 0%, #0d8ad4 100%);
            border-radius: 999px;
            box-shadow: 0 2px 8px rgba(19, 167, 253, 0.35);
            pointer-events: none;
        }

        .load-more-btn {
            margin-top: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: var(--pricing-navy);
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

            .load-more-btn:hover {
                background: #001f2b;
            }

        .packages-message {
            margin-bottom: 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .packages-message--error {
            background: #fef2f2;
            color: #b91c1c;
            border: 1px solid #fecaca;
        }

        .packages-loading {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(11, 15, 25, 0.45);
            backdrop-filter: blur(4px);
        }

        .packages-loading__spinner {
            width: 48px;
            height: 48px;
            border: 4px solid rgba(255,255,255,0.25);
            border-top-color: var(--bexon-accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

		/* end package page*/

        /* RESPONSIVE LAYOUT BREAKPOINTS */

        @media (max-width: 1199px) {
            .vcard-img-wrap {
                height: 143px;
            }

            .nav-links {
                gap: 13px;
            }

            background: rgb(0, 41, 58);
            padding: 12px 12px;
            font-size: 0.65rem;
        }

        img#navLogo {
            height: 40px;
        }

        .nav-cta {
            font-size: 0.75rem;
            padding: 12px 17px;
        }

        .nav-links a.link, .nav-links button.link-btn {
            font-size: 0.79rem;
        }

        }

        @media (max-width: 1000px) {
            .hero-inner {
                flex-direction: column;
                text-align: center;
            }

            .hero-sub {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

            .vgrid-4 {
                grid-template-columns: repeat(2, 1fr);
            }

            .fric-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .how-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .foot-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
        }

        @media (max-width: 900px) {

            .how-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .how-item .itemimg {
                height: 192px;
            }

            body {
                font-size: 15px;
            }

            .wrap {
                padding: 0 24px;
            }

            .pad {
                padding: 80px 0;
            }

            .nav-inner {
                padding: 16px 24px;
            }

            .vgrid-4 {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .how-item {
                padding: 25px 18px;
            }

            .why-card {
                padding: 20px 18px;
            }

            .testimonials-section .md\:grid-cols-3 {
                grid-template-columns: repeat(1, minmax(0, 1fr));
            }

            .hero {
                min-height: auto;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: 80%;
                max-width: 320px;
                background: var(--bexon-dark);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 40px;
                gap: 24px;
                transform: translateX(100%);
                transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
                box-shadow: -20px 0 50px -20px rgba(11,15,25,0.15);
                z-index: 90;
                overflow-y: auto;
            }

                .nav-links.open {
                    transform: translateX(0);
					height:100vh;
                }

            .nav-toggle {
                display: block;
                z-index: 95;
            }

            .price-panel {
                grid-template-columns: 1fr;
            }

            .price-right {
                border-left: none;
                border-top: 1px solid var(--bexon-border-dark);
            }

            .hero-inner {
                padding: 100px 24px 80px;
            }

            .final-inner {
                padding: 48px 32px;
            }

            .stats {
                padding: 30px 24px;
            }

            .dropdown {
                width: 100%;
            }

            .dropdown-menu {
                position: relative;
                top: 0;
                left: 0;
                transform: none !important;
                width: 100%;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                display: none;
                margin-top: 10px;
            }

            .dropdown.active .dropdown-menu {
                display: flex;
            }

            .dropdown-item {
                color: rgba(255, 255, 255, 0.7) !important;
            }

                .dropdown-item:hover {
                    background: rgba(255, 255, 255, 0.1);
                    color: #fff !important;
                }

            .nav-links a.link,
            .nav-links button.link-btn {
                color: rgba(255, 255, 255, 0.8) !important;
            }
        }

        @media (max-width: 560px) {
            .vgrid-4, .vgrid-2, .fric-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .foot-top {
                grid-template-columns: 1fr;
            }

            .price-left, .price-right {
                padding: 40px 24px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }

            .how-grid {
                grid-template-columns: repeat(1, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(1, 1fr);
            }

            .promo {
                font-size: 0.75rem;
                padding: 8px 15px 6px 15px;
            }

            #navLogo {
                height: 46px;
            }

            .hero-inner {
                padding: 66px 24px 42px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat {
                padding: 24px 20px;
                border-bottom: 1px solid var(--bexon-border);
            }

                .stat::after {
                    display: none
                }
        }



        /* LIGHTBOX */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.92);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 20px;
        }

            .lightbox.active {
                display: flex;
            }

            .lightbox img {
                max-width: 90%;
                max-height: 85vh;
                border-radius: 12px;
            }

            .lightbox .close-btn {
                position: absolute;
                top: 20px;
                right: 30px;
                font-size: 42px;
                color: #fff;
                cursor: pointer;
                line-height: 1;
            }

            .lightbox .nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(255,255,255,0.15);
                border: none;
                color: #fff;
                font-size: 34px;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                cursor: pointer;
                backdrop-filter: blur(4px);
            }

            .lightbox .prev {
                left: 20px;
            }

            .lightbox .next {
                right: 20px;
            }

        .itemimg::before,
        .itemimg::after {
            pointer-events: none;
        }

        @media (max-width:768px) {
            .lightbox .nav-btn {
                width: 42px;
                height: 42px;
                font-size: 26px;
            }

            .lightbox .close-btn {
                font-size: 34px;
                right: 20px;
            }

            .itemimg::after {
                width: 48px;
                height: 48px;
                font-size: 30px;
            }

            .fric {
                padding: 48px 20px;
            }
			.eyebrow::before{
				display:none
			}
			.price-left .pl-num {
				font-size: 2.2rem;
				}
        }
		
		
		@media (max-width:640px){
			
			.trust-strip {
				justify-content: start;
			}
			.price-left .btn {
				padding: 16px 14px;
				font-size: 0.70rem;
			}
			
		}