/* Palette & CSS Variables */
        :root {
            --background: #ffffff;
            --foreground: #0a0a0a;
            --brand: #2563c9;
            /* primary royal blue */
            --brand-deep: #0f2f63;
            /* deep navy — hero/stats/footer base */
            --brand-light: #5790e6;
            /* light blue accent / focus ring */
            --accent-teal: #0b6e97;
            /* blue court caption tint */
            --accent-gold: #c9a84c;
            /* Editorial Gold */
            --gold-bright: #ffd700;
            /* Bright Gold */
            --surface: #f4f4f4;
            /* off-white section bg */
            --surface-card: #ffffff;
            --ink: #0a0a0a;
            /* near-black headings */
            --ink-soft: #717784;
            /* muted body */
            --ghost: #d7dae1;
            /* oversized ghost text */
            --hairline: #e6e8ec;
            /* subtle borders */
            --on-brand: #ffffff;
            /* text on navy */

            /* radii */
            --radius-card: 1.5rem;
            --radius-card-lg: 2rem;
            --radius-pill: 62.5rem;
        }

        /* CSS Reset */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 20px;
            scroll-behavior: auto;
            /* Handled by Lenis */
        }

        /* Adaptive Scale Down Media Queries */
        @media (max-width: 1920px) {
            html {
                font-size: 1.041666vw;
            }
        }

        @media (max-width: 1440px) {
            html {
                font-size: 1.388888vw;
            }
        }

        @media (max-width: 1024px) {
            html {
                font-size: 1.5625vw;
            }
        }

        @media (max-width: 640px) {
            html {
                font-size: 4.444444vw;
            }
        }

        body {
            font-family: "Onest", system-ui, sans-serif;
            background: var(--background);
            color: var(--foreground);
            min-height: 100vh;
            overflow-x: clip;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, p {
            
            line-height: 1.6;
            margin: 0;
            color: inherit;
        }

        h6 {
            margin: 0;
            color: inherit;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 500;
            line-height: 1.2;
        }

        h4 {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            font-weight: 600;
            line-height: 1.3;
        }

        h5 {
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.4;
        }

        p {
            
            line-height: 1.6;
            margin: 0;
            color: inherit;
        }

        h6 {
            
            font-weight: 600;
            line-height: 1.4;
        }

        /* Scroll Lock Styles */
        html.scroll-locked {
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        html.scroll-locked body {
            overflow: hidden;
            height: 100%;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        :focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 2px;
        }

        /* Main Container & Page Framing Insets */
        main {
            width: 100%;
            overflow-x: clip;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            /* Gap between sections */
        }

        @media (min-width: 640px) {
            main {
                padding: 0;
            }
        }

        /* Reusable UI Components */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.22em;
        }

        .eyebrow::before {
            content: "";
            width: 0.375rem;
            height: 0.375rem;
            border-radius: var(--radius-pill);
            display: block;
        }

        .eyebrow.tone-dark {
            color: var(--brand-light);
        }

        .eyebrow.tone-dark::before {
            background: var(--brand);
        }

        .eyebrow.tone-light {
            color: var(--gold-bright);
        }

        .eyebrow.tone-light::before {
            background: var(--brand-light);
        }

        /* Buttons */
        .btn-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: var(--radius-pill);
            padding: 0.875rem 1.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
        }

        .btn-pill svg {
            width: 1rem;
            height: 1rem;
            transition: transform 0.1s ease;
        }

        .btn-pill.variant-light {
            background: #ffffff;
            color: var(--brand-deep);
        }

        .btn-pill.variant-light:hover {
            background: var(--brand);
            color: #ffffff;
        }

        .btn-pill.variant-solid {
            background: var(--brand);
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(76, 111, 255, 0.3);
        }

        .btn-pill.variant-solid:hover {
            background: #3b5bdb;
            transform: translateY(-1px);
        }

        .btn-pill.variant-outline {
            border: 1px solid var(--hairline);
            color: #ffffff;
            background: transparent;
            backdrop-filter: blur(8px);
        }

        .btn-pill.variant-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #ffffff;
        }

        .btn-arrow {
            width: 3rem;
            height: 3rem;
            border-radius: var(--radius-pill);
            display: grid;
            place-items: center;
            transition: background 0.3s, border-color 0.3s, color 0.3s;
        }

        @media (min-width: 640px) {
            .btn-arrow {
                width: 3.5rem;
                height: 3.5rem;
            }
        }

        .btn-arrow svg {
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.1s ease;
        }

        .btn-arrow.variant-outline {
            border: 1px solid var(--hairline);
            color: #ffffff;
            background: transparent;
        }

        .btn-arrow.variant-outline:hover {
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
        }

        .btn-arrow.variant-solid {
            background: var(--brand);
            border: 1px solid var(--brand);
            color: #ffffff;
        }

        .btn-arrow.variant-solid:hover {
            background: #3b5bdb;
            border-color: #3b5bdb;
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .carousel-dots button {
            padding: 0.375rem;
        }

        .carousel-dots .dot-pill {
            height: 0.375rem;
            border-radius: var(--radius-pill);
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
        }

        .carousel-dots button[aria-current="true"] .dot-pill {
            width: 1.25rem;
        }

        .carousel-dots button[aria-current="false"] .dot-pill {
            width: 0.375rem;
        }

        .carousel-dots.tone-light .dot-pill {
            background: rgba(255, 255, 255, 0.3);
        }

        .carousel-dots.tone-light button[aria-current="true"] .dot-pill {
            background: #ffffff;
        }

        .carousel-dots.tone-dark .dot-pill {
            background: var(--ghost);
        }

        .carousel-dots.tone-dark button[aria-current="true"] .dot-pill {
            background: var(--brand-light);
        }

        /* Reveal Primitives Classes */
        .clip-mask-wrapper {
            display: inline-block;
            overflow: hidden;
            vertical-align: bottom;
            padding-bottom: 0.12em;
            perspective: 800px;
        }

        .clip-mask-inner {
            display: inline-block;
            transform: translateY(115%) rotateX(-35deg);
            transform-origin: top center;
            opacity: 0;
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .clip-mask-inner.revealed {
            transform: translateY(0) rotateX(0deg);
            opacity: 1;
        }

        .reveal-inview {
            opacity: 0;
            transform: perspective(1000px) translateY(2.5rem) rotateX(15deg) scale(0.96);
            transform-origin: top center;
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-inview.revealed {
            opacity: 1;
            transform: perspective(1000px) translateY(0) rotateX(0deg) scale(1);
        }

        /* Preloader Curtain */
        .loader-curtain {
            position: fixed;
            inset: 0;
            z-index: 200;
            background: var(--background);
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
        }

        .loader-wordmark {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            opacity: 0;
            transform: translateY(1rem);
        }

        .loader-wordmark span {
            background: linear-gradient(135deg, var(--foreground), var(--brand-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .loader-track {
            width: 10rem;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-pill);
            overflow: hidden;
            position: relative;
        }

        .loader-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: var(--brand-light);
            transform: scaleX(0);
            transform-origin: left;
        }

        /* Header Styling */
        header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 1.5rem 0;
            font-size: 0.875rem;
            color: #ffffff;
            z-index: 10;
            position: relative;
        }

        @media (min-width: 640px) {
            header {
                padding: 2rem 2.5rem 0;
            }
        }

        .header-nav {
            flex: 1;
            display: flex;
            gap: 2.25rem;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .header-nav {
                display: none;
            }
        }

        .header-nav-item {
            position: relative;
            padding: 0.5rem 0;
        }

        .header-nav-link {
            color: rgba(255, 255, 255, 0.8);
            transition: color 0.25s;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .header-nav-link:hover {
            color: #ffffff;
        }

        /* Mega Menu Dropdown Solution */
        .header-mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 44rem;
            background: rgba(13, 18, 38, 0.95);
            border: 1px solid var(--hairline);
            border-radius: var(--radius-card);
            backdrop-filter: blur(20px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr 1.1fr;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(1rem);
            transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
            z-index: 100;
        }

        .header-nav-item:hover .header-mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-col {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .mega-header-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--brand-light);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.5rem;
            margin-bottom: 0.25rem;
        }

        .mega-link-item {
            display: flex;
            gap: 0.75rem;
            padding: 0.5rem;
            border-radius: 0.75rem;
            transition: background 0.25s, border-color 0.25s;
            border: 1px solid transparent;
        }

        .mega-link-item:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .mega-link-icon {
            font-size: 1.25rem;
            padding: 0.25rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 0.5rem;
            height: fit-content;
        }

        .mega-link-name {
            font-weight: 600;
            color: #ffffff;
            font-size: 0.8125rem;
        }

        .mega-link-desc {
            font-size: 0.6875rem;
            color: inherit; opacity: 0.8;
            margin-top: 2px;
            line-height: 1.3;
        }

        /* Standard Dropdown */
        .header-standard-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 14rem;
            background: rgba(13, 18, 38, 0.95);
            border: 1px solid var(--hairline);
            border-radius: var(--radius-card);
            backdrop-filter: blur(20px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(1rem);
            transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
            z-index: 100;
        }

        .header-nav-item:hover .header-standard-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            color: inherit; opacity: 0.8;
            border-radius: 0.5rem;
            transition: background 0.25s, color 0.25s;
        }

        .dropdown-link-item:hover {
            background: rgba(255, 255, 255, 0.04);
            color: #ffffff;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .header-logo span {
            background: linear-gradient(135deg, var(--foreground), var(--brand-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (min-width: 1024px) {
            .header-logo {
                justify-content: center;
                flex: 1;
            }
        }

        .logo-mark {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--brand-light);
        }

        .header-actions {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1.5rem;
        }

        .btn-login {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.2s;
        }

        .btn-login:hover {
            color: #ffffff;
        }

        @media (max-width: 640px) {
            .btn-login {
                display: none;
            }
        }

        .burger-btn {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(8px);
            display: grid;
            place-items: center;
            gap: 5px;
            transition: background 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .burger-btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .burger-line {
            width: 1rem;
            height: 1.5px;
            background: #ffffff;
        }

        /* Hero Section */
        .hero-section {
            background: var(--brand-deep);
            color: #ffffff;
            position: relative;
            border-radius: 0;
            height: auto;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            z-index: 1;
            padding-bottom: 5px;
        }

        @media (min-width: 1024px) {
            .hero-section {
                min-height: calc(100vh - 1.5rem);
            }
        }

        .hero-bg {
            position: absolute;
            left: 0;
            top: -16%;
            height: 132%;
            width: 100%;
            z-index: -10;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.18;
        }

        .hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 20%, rgba(76, 111, 255, 0.15), transparent 60%),
                linear-gradient(to bottom, rgba(8, 11, 24, 0.8), rgba(8, 11, 24, 0.95));
        }

        .hero-content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            padding: 2rem 1.5rem;
            margin-top: 1rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-content-grid {
                grid-template-columns: 1fr 1.1fr;
                padding: 3rem 3.5rem 0;
                gap: 4rem;
            }
        }

        .hero-left-side {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border-radius: var(--radius-pill);
            background: rgba(76, 111, 255, 0.12);
            border: 1px solid rgba(76, 111, 255, 0.25);
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-badge-dot {
            width: 0.375rem;
            height: 0.375rem;
            background: var(--brand-light);
            border-radius: var(--radius-pill);
            box-shadow: 0 0 8px var(--brand-light);
        }

        .hero-title {
            font-size: 10vw;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -0.02em;
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 5.5vw;
            }
        }

        .hero-sub {
            font-size: 16px;
            color: inherit; opacity: 0.8;
            line-height: 1.6;
            max-width: 32rem;
        }

        @media (min-width: 640px) {
            .hero-sub {
                font-size: 18px;
            }
        }

        .hero-btn-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Mock Dashboard (Hero Right Column) */
        .hero-right-side {
            width: 100%;
            perspective: 1000px;
        }

        .dashboard-mock {
            width: 100%;
            background: rgba(13, 18, 38, 0.65);
            border: 1px solid var(--hairline);
            border-radius: var(--radius-card);
            backdrop-filter: blur(16px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            transform: rotateY(-3deg) rotateX(2deg);
            transition: transform 0.5s;
        }

        .dashboard-mock:hover {
            transform: rotateY(0) rotateX(0);
        }

        .mock-topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--hairline);
            padding-bottom: 0.75rem;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .mock-tabs {
            display: flex;
            gap: 0.5rem;
        }

        .mock-tab {
            padding: 0.375rem 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: inherit; opacity: 0.8;
            transition: all 0.25s;
        }

        .mock-tab.active {
            background: rgba(76, 111, 255, 0.12);
            color: var(--brand);
        }

        .mock-switcher {
            font-size: 0.75rem;
            font-weight: 500;
            color: #ffffff;
            padding: 0.375rem 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0.5rem;
            border: 1px solid var(--hairline);
            cursor: pointer;
            position: relative;
        }

        .mock-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
        }

        .mock-metric {
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            border-radius: 0.75rem;
            padding: 0.75rem 0.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .mock-metric-num {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .mock-metric-num.m-blue {
            color: var(--brand);
        }

        .mock-metric-num.m-gold {
            color: var(--accent-gold);
        }

        .mock-metric-num.m-green {
            color: var(--brand-light);
        }

        .mock-metric-num.m-red {
            color: #ff6b8a;
        }

        .mock-metric-lbl {
            font-size: 0.5625rem;
            color: inherit; opacity: 0.8;
            line-height: 1.2;
        }

        .mock-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 0.75rem;
        }

        @media (max-width: 640px) {
            .mock-grid {
                grid-template-columns: 1fr;
            }
        }

        .mock-bookings {
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            border-radius: 0.75rem;
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mock-section-title {
            font-size: 0.6875rem;
            font-weight: 700;
            color: inherit; opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .mock-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.375rem 0;
            border-bottom: 1px dashed var(--hairline);
        }

        .mock-row:last-child {
            border-bottom: none;
        }

        .mock-row-name {
            font-size: 0.75rem;
            font-weight: 600;
        }

        .mock-row-sub {
            font-size: 0.5625rem;
            color: inherit; opacity: 0.8;
            margin-top: 1px;
        }

        .mock-tag {
            font-size: 0.5rem;
            font-weight: 700;
            padding: 2px 4px;
            border-radius: 3px;
            text-transform: uppercase;
        }

        .mock-tag.tag-daily {
            background: rgba(76, 111, 255, 0.15);
            color: var(--brand);
        }

        .mock-tag.tag-monthly {
            background: rgba(0, 212, 168, 0.15);
            color: var(--brand-light);
        }

        .mock-tag.tag-hourly {
            background: rgba(201, 168, 76, 0.15);
            color: var(--accent-gold);
        }

        .mock-amount {
            font-size: 0.6875rem;
            font-weight: 600;
        }

        .mock-chart-box {
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            border-radius: 0.75rem;
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .mock-bars {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 4.5rem;
            margin-top: 0.5rem;
        }

        .mock-bar {
            width: 0.5rem;
            border-radius: 2px 2px 0 0;
            background: var(--brand);
        }

        .mock-bar.bar-1 {
            height: 40%;
        }

        .mock-bar.bar-2 {
            height: 60%;
            background: var(--brand-light);
        }

        .mock-bar.bar-3 {
            height: 80%;
        }

        .mock-bar.bar-4 {
            height: 50%;
        }

        .mock-bar.bar-5 {
            height: 75%;
            background: var(--brand-light);
        }

        .mock-bar.bar-6 {
            height: 90%;
        }

        .mock-chart-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.5rem;
            color: inherit; opacity: 0.8;
            margin-top: 0.25rem;
        }

        .mock-status-row {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .mock-status {
            flex: 1;
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            border-radius: 0.5rem;
            padding: 0.5rem 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: 8rem;
        }

        .status-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

        .status-dot.dot-green {
            background: var(--brand-light);
            box-shadow: 0 0 6px var(--brand-light);
        }

        .status-dot.dot-blue {
            background: var(--brand);
            box-shadow: 0 0 6px var(--brand);
        }

        .status-dot.dot-gold {
            background: var(--accent-gold);
            box-shadow: 0 0 6px var(--accent-gold);
        }

        .mock-status-text {
            font-size: 0.625rem;
            color: inherit; opacity: 0.8;
            line-height: 1.2;
        }

        .mock-status-text strong {
            display: block;
            color: #ffffff;
        }

        /* Marquee Styling */
        .marquee-section {
            width: 100%;
            overflow: hidden;
            background: var(--surface);
            border-radius: var(--radius-card-lg);
            padding: 1.25rem 0;
            position: relative;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: scrollMarquee 35s linear infinite;
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0 2rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            white-space: nowrap;
        }

        .marq-dot {
            width: 0.375rem;
            height: 0.375rem;
            background: var(--brand-light);
            border-radius: var(--radius-pill);
        }

        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Stats Section */
        .stats-section {
            background: var(--brand-deep);
            color: #ffffff;
            padding: 5rem 1.5rem;
            z-index: 1;
            border-radius: var(--radius-card-lg);
        }

        @media (min-width: 640px) {
            .stats-section {
                padding: 6rem 2.5rem;
            }
        }

        .section-header-wrap {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .section-header-wrap {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-end;
            }
        }

        .stats-title {
            
            font-weight: 500;
            margin-top: 1rem;
            line-height: 0.95;
            letter-spacing: -0.02em;
        }

        .stats-desc {
            
            color: inherit; opacity: 0.8;
            max-width: 30rem;
            line-height: 1.6;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem 2rem;
            margin-top: 4rem;
        }

        @media (min-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-cell {
            border-top: 1px solid var(--hairline);
            padding-top: 1.25rem;
            display: flex;
            flex-direction: column;
        }

        .stat-val {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff, var(--brand-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (min-width: 480px) {
            .stat-val {
                font-size: 2.75rem;
            }
        }

        @media (min-width: 640px) {
            .stat-val {
                font-size: 3.5rem;
            }
        }

        @media (min-width: 1024px) {
            .stat-val {
                font-size: 4.5rem;
            }
        }

        .stat-lbl {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.75rem;
            font-weight: 600;
        }

        .stat-sub {
            font-size: 0.75rem;
            color: inherit; opacity: 0.8;
            margin-top: 0.25rem;
            line-height: 1.4;
        }

        /* Brand Logo Carousel */
        .brand-carousel-section {
            padding: 3rem 0;
            background: var(--surface);
            overflow: hidden;
            position: relative;
            border-radius: var(--radius-card-lg);
        }

        .brand-carousel-title {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: inherit; opacity: 0.8;
            margin-bottom: 2rem;
        }

        .brand-carousel-title span {
            color: var(--accent-gold);
        }

        .brand-track-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .brand-track-wrapper::before,
        .brand-track-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .brand-track-wrapper::before {
            left: 0;
            background: linear-gradient(90deg, var(--surface), transparent);
        }

        .brand-track-wrapper::after {
            right: 0;
            background: linear-gradient(-90deg, var(--surface), transparent);
        }

        .brand-logo-track {
            display: flex;
            gap: 3rem;
            align-items: center;
            width: max-content;
            animation: scrollMarquee 25s linear infinite;
        }

        .brand-logo-card {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--hairline);
            color: var(--ink);
            font-weight: 600;
            
            white-space: nowrap;
            transition: all 0.3s;
        }

        .brand-logo-card:hover {
            background: rgba(76, 111, 255, 0.06);
            border-color: var(--brand);
            transform: translateY(-3px);
        }

        .brand-logo-card span.bl-icon {
            font-size: 1.25rem;
        }

        /* Modules Section */
        .modules-section {
            background: var(--surface);
            color: var(--ink);
            padding: 6rem 1.5rem;
            display: flex;
            flex-direction: column;
            z-index: 1;
            border-radius: var(--radius-card-lg);
        }

        @media (min-width: 640px) {
            .modules-section {
                padding: 6rem 2.5rem;
            }
        }

        .modules-title {
            
            font-weight: 500;
            line-height: 0.95;
            letter-spacing: -0.02em;
            margin-top: 1rem;
        }

        .modules-list {
            margin-top: 3.5rem;
            list-style: none;
        }

        .module-row {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.75rem 0;
            border-top: 1px solid var(--hairline);
            transition: background-color 0.3s;
        }

        .module-row:last-child {
            border-bottom: 1px solid var(--hairline);
        }

        .module-row:hover {
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        .module-idx {
            width: 2.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--brand);
        }

        .module-main {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        @media (min-width: 768px) {
            .module-main {
                flex-direction: row;
                align-items: baseline;
                gap: 2rem;
            }
        }

        .module-name {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        @media (min-width: 768px) {
            .module-name {
                font-size: 1.875rem;
                width: 18rem;
                flex-shrink: 0;
            }
        }

        .module-desc {
            font-size: 0.875rem;
            color: inherit; opacity: 0.8;
        }

        .module-arrow {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: var(--radius-pill);
            border: 1px solid var(--hairline);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            color: var(--ink);
            background: var(--surface-card);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .module-arrow svg {
            width: 1.25rem;
            height: 1.25rem;
            opacity: 0.65;
            transition: transform 0.1s ease, opacity 0.1s ease;
        }

        /* Problem Section (Tilted Cards) */
        .problem-section {
            background: var(--background);
            position: relative;
            overflow: hidden;
            padding: 6rem 1.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3.5rem;
            z-index: 1;
        }

        @media (min-width: 1024px) {
            .problem-section {
                grid-template-columns: 1fr 1.2fr;
                padding: 7rem 3.5rem;
                align-items: center;
            }
        }

        .problem-left {
            max-width: 28rem;
        }

        .problem-title {
            
            font-weight: 500;
            line-height: 0.95;
            letter-spacing: -0.02em;
            margin-top: 1rem;
        }

        .problem-desc {
            
            color: inherit; opacity: 0.8;
            line-height: 1.6;
            margin-top: 1.5rem;
        }

        .problem-stat {
            display: flex;
            gap: 1rem;
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            border-radius: var(--radius-card);
            padding: 1.25rem;
            margin-top: 2rem;
            align-items: center;
        }

        .problem-stat-num {
            
            font-weight: 700;
            color: var(--brand-light);
        }

        .problem-stat-text {
            font-size: 0.8125rem;
            color: inherit; opacity: 0.8;
            line-height: 1.5;
        }

        /* Pain Cards Tilted Grid */
        .problem-right {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
        }

        .pain-card {
            width: 100%;
            background: var(--surface);
            border: 1px solid var(--hairline);
            border-radius: var(--radius-card);
            padding: 1.5rem;
            display: flex;
            gap: 1.25rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease;
        }

        .pain-icon {
            font-size: 2rem;
            padding: 0.5rem;
            background: var(--surface-card);
            border-radius: 0.75rem;
            height: fit-content;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        }

        .pain-body h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.5rem;
        }

        .pain-body p {
            font-size: 0.875rem;
            color: inherit; opacity: 0.8;
            line-height: 1.5;
        }

        /* Tilted styling for desktop cards */
        @media (min-width: 768px) {
            .pain-card.pc-1 {
                transform: rotate(-2deg) translateY(-5px);
            }

            .pain-card.pc-2 {
                transform: rotate(1.5deg) translateX(10px) translateY(5px);
            }

            .pain-card.pc-3 {
                transform: rotate(-1deg) translateY(10px);
            }
        }

        /* Capabilities / Features Section */
        .features-section {
            background: var(--surface);
            border-radius: var(--radius-card-lg);
            padding: 5rem 1.5rem;
            z-index: 1;
        }

        /* Fix text contrast on light background sections */
        .features-section .features-section-title,
        .features-section .features-section-desc,
        .features-section .feature-title,
        .features-section .feature-desc,
        .features-section .feat-point-row h4,
        .features-section .feat-point-row p,
        .features-section .sync-node-name,
        .features-section .sync-node-sub,
        .features-section .vl-name,
        .features-section .vl-desc,
        .features-section .receipt-row {
            color: #0a0a0a !important;
        }

        @media (min-width: 640px) {
            .features-section {
                padding: 6rem 2.5rem;
            }
        }

        .features-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem auto;
        }

        .features-section-title {
            
            font-weight: 500;
            margin-top: 1rem;
            line-height: 0.95;
            letter-spacing: -0.02em;
        }

        .features-section-desc {
            
            color: inherit; opacity: 0.8;
            line-height: 1.6;
            margin-top: 1rem;
        }

        .features-grid {
            display: flex;
            flex-direction: column;
            gap: 5rem;
        }

        .feature-item-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .feature-item-row {
                grid-template-columns: 1fr 1.1fr;
            }

            .feature-item-row.reverse {
                grid-template-columns: 1.1fr 1fr;
            }

            .feature-item-row.reverse .feature-content {
                order: 2;
            }
        }

        .feature-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-title {
            
            font-weight: 500;
            line-height: 1;
            letter-spacing: -0.01em;
        }

        .feature-desc {
            font-size: 0.9375rem;
            color: inherit; opacity: 0.8;
            line-height: 1.6;
        }

        .feat-points-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            list-style: none;
        }

        .feat-point-row {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .feat-point-icon-box {
            font-size: 1.25rem;
            padding: 0.375rem;
            background: rgba(76, 111, 255, 0.1);
            color: var(--brand);
            border-radius: 0.5rem;
            line-height: 1;
        }

        .feat-point-text-box h4 {
            font-size: 0.9375rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2px;
        }

        .feat-point-text-box p {
            font-size: 0.75rem;
            color: inherit; opacity: 0.8;
            line-height: 1.4;
        }

        .feature-visual {
            width: 100%;
            background: var(--surface-card);
            border: 1px solid var(--hairline);
            border-radius: var(--radius-card);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        /* Smart Calendar Widget */
        .booking-engine-vis {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .booking-types {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
        }

        .booking-type-btn {
            padding: 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: inherit; opacity: 0.8;
            text-align: center;
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            transition: all 0.25s;
        }

        .booking-type-btn.active {
            background: rgba(76, 111, 255, 0.12);
            border-color: var(--brand);
            color: var(--brand);
        }

        .calendar-strip {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--hairline);
            border-radius: 0.75rem;
            padding: 1rem;
            transition: opacity 0.2s;
        }

        .cal-day-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
        }

        .cal-day-cell.booked {
            background: rgba(76, 111, 255, 0.15);
            border: 1px solid rgba(76, 111, 255, 0.25);
        }

        .cal-day-cell.booked-gold {
            background: rgba(201, 168, 76, 0.15);
            border: 1px solid rgba(201, 168, 76, 0.25);
        }

        .cal-day-cell.booked-mint {
            background: rgba(0, 212, 168, 0.15);
            border: 1px solid rgba(0, 212, 168, 0.25);
        }

        .cal-d {
            color: inherit; opacity: 0.8;
            font-size: 0.625rem;
            text-transform: uppercase;
        }

        .cal-n {
            font-weight: 700;
            margin: 2px 0;
        }

        .cal-label {
            font-size: 0.5rem;
            text-transform: uppercase;
            font-weight: 600;
            color: #ffffff;
        }

        /* POS Sync Nodes Widget */
        .pos-sync-vis {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .sync-nodes {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            isolation: isolate;
        }

        .sync-node {
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            border-radius: 0.75rem;
            padding: 0.75rem;
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            max-width: 7.5rem;
            transition: all 0.3s;
        }

        .sync-node.active-glow {
            background-color: var(--surface-card);
            background-image: linear-gradient(rgba(76, 111, 255, 0.12), rgba(76, 111, 255, 0.12));
            border-color: var(--brand);
            box-shadow: 0 0 15px rgba(76, 111, 255, 0.25);
        }

        .sync-node-name {
            font-size: 0.75rem;
            font-weight: 700;
            display: block;
        }

        .sync-node-sub {
            font-size: 0.5625rem;
            color: inherit; opacity: 0.8;
            margin-top: 1px;
        }

        .sync-connector {
            flex-grow: 1;
            height: 1.5px;
            background: var(--hairline);
            margin: 0 -5px;
            z-index: -1;
            position: relative;
            overflow: hidden;
        }

        .sync-connector.pulsing::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 30px;
            background: linear-gradient(90deg, transparent, var(--brand-light), transparent);
            animation: pulseSync 1s infinite linear;
        }

        @keyframes pulseSync {
            0% {
                left: -30px;
            }

            100% {
                left: 100%;
            }
        }

        .sync-receipt {
            background: var(--surface);
            border: 1px solid var(--hairline);
            border-radius: 0.75rem;
            padding: 1rem;
        }

        .receipt-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            padding: 0.375rem 0;
            border-bottom: 1px dashed var(--hairline);
        }

        .receipt-row.total {
            border-bottom: none;
            padding-top: 0.5rem;
            font-weight: 700;
            color: var(--brand-light);
        }

        /* Multi Vendor L1-L4 Stacking Layers */
        .vendor-vis {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .vendor-layers {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .v-layer {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 1rem;
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid var(--hairline);
            border-radius: 0.75rem;
            transition: all 0.3s;
        }

        .v-layer.layer-active {
            background: rgba(0, 212, 168, 0.08);
            border-color: var(--brand-light);
            transform: translateX(5px);
        }

        .vl-dot {
            width: 6px;
            height: 6px;
            background: var(--brand-light);
            border-radius: 50%;
        }

        .vl-name {
            font-size: 0.8125rem;
            font-weight: 700;
        }

        .vl-desc {
            font-size: 0.625rem;
            color: inherit; opacity: 0.8;
            margin-top: 1px;
        }

        .vl-tag {
            margin-left: auto;
            font-size: 0.5625rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            color: inherit; opacity: 0.8;
        }

        /* Comparison Table Section */
        .comparison-section {
            background: #050710;
            color: #ffffff;
            padding: 6rem 1.5rem;
            z-index: 1;
        }

        @media (min-width: 640px) {
            .comparison-section {
                padding: 7rem 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .comparison-section {
                border-radius: var(--radius-card-lg);
            }
        }

        .comparison-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem auto;
        }
        
        .comparison-header h2 {
            color: #ffffff !important;
        }

        .comp-table-wrap {
            width: 100%;
            overflow-x: auto;
            border: none;
            background: transparent;
        }

        .comp-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
            font-size: 0.9375rem;
            color: #e2e8f0;
        }

        .comp-table th,
        .comp-table td {
            padding: 1.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            vertical-align: middle;
        }
        
        .comp-table th:first-child,
        .comp-table td:first-child {
            text-align: left;
        }

        .comp-table th {
            font-weight: 600;
            color: #ffffff;
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .comp-table th.th-pixelgo {
            background: rgba(28, 42, 94, 0.5);
            color: #ffffff;
            border-left: 1px solid rgba(76, 111, 255, 0.5);
            border-right: 1px solid rgba(76, 111, 255, 0.5);
            border-top: 1px solid rgba(76, 111, 255, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px 8px 0 0;
        }

        .comp-table td.comp-pg {
            background: rgba(28, 42, 94, 0.5);
            border-left: 1px solid rgba(76, 111, 255, 0.5);
            border-right: 1px solid rgba(76, 111, 255, 0.5);
        }

        .comp-feature {
            font-weight: 600;
            font-size: 0.9375rem;
            color: #ffffff;
        }

        .comp-sub {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        .check-yes {
            color: #10b981;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .check-no {
            color: #ef4444;
            font-weight: 700;
            font-size: 1.125rem;
        }

        .check-partial {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .comp-table tfoot .comp-btn-row-desktop td {
            border-bottom: none;
            padding: 1.5rem 1.25rem;
        }
        
        .comp-table tfoot .comp-pg {
            border-bottom: 1px solid rgba(76, 111, 255, 0.5) !important;
            border-radius: 0 0 8px 8px;
        }

        /* Mobile App Section */
        .mobile-section {
            background: var(--brand-deep);
            color: #ffffff;
            border-radius: var(--radius-card-lg);
            padding: 5rem 1.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3.5rem;
            align-items: center;
            z-index: 1;
        }

        @media (min-width: 1024px) {
            .mobile-section {
                grid-template-columns: 1.1fr 1fr;
                padding: 6rem 3.5rem;
            }
        }

        .mobile-left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-title {
            
            font-weight: 500;
            line-height: 0.95;
            letter-spacing: -0.02em;
        }

        .mobile-feats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 1rem;
        }

        @media (max-width: 640px) {
            .mobile-feats-grid {
                grid-template-columns: 1fr;
            }
        }

        
        .mobile-feat-box {
            display: grid;
            grid-template-columns: auto 1fr;
            column-gap: 0.75rem;
            row-gap: 0.25rem;
            align-items: center;
        }

        .mobile-feat-icon {
            grid-row: 1 / 3;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-feat-name {
            grid-column: 2;
            font-weight: 600;
            font-size: 0.9375rem;
        }

        .mobile-feat-desc {
            grid-column: 2;
            font-size: 0.75rem;
            color: inherit; opacity: 0.8;
            line-height: 1.4;
        }

        

        

        

        .mobile-right {
            display: flex;
            justify-content: center;
            position: relative;
        }

        /* Mock Phone Frame */
        .phone-frame {
            width: 16.5rem;
            height: 33.5rem;
            border: 8px solid #232742;
            border-radius: 2.25rem;
            background: #000000;
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            overflow: hidden;
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 7rem;
            height: 1rem;
            background: #232742;
            border-radius: 0 0 10px 10px;
            z-index: 10;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            position: relative;
            padding: 1.25rem 0.75rem;
            color: #ffffff;
            font-family: system-ui, sans-serif;
        }

        .phone-screen-content {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            transition: opacity 0.25s, transform 0.25s;
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            font-weight: 700;
            padding-top: 0.25rem;
        }

        .phone-logo {
            color: var(--brand-light);
        }

        .phone-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.375rem;
        }

        .ph-metric {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0.5rem;
            padding: 0.5rem;
            text-align: center;
        }

        .ph-num {
            
            font-weight: 700;
        }

        .ph-lbl {
            font-size: 0.5rem;
            color: #a0a6b8;
        }

        .phone-actions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.375rem;
        }

        .ph-action {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 0.5rem;
            padding: 0.5rem;
            font-size: 0.5625rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .ph-action-icon {
            font-size: 0.75rem;
        }

        .phone-bookings {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .ph-book-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--surface-card);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            padding: 0.375rem 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.5625rem;
        }

        .ph-book-name {
            font-weight: 700;
        }

        .ph-book-sub {
            color: #a0a6b8;
            font-size: 0.5rem;
            margin-top: 1px;
        }

        .ph-book-status {
            font-size: 0.5rem;
            font-weight: 700;
            padding: 2px 4px;
            border-radius: 3px;
        }

        .ph-book-status.status-in {
            background: rgba(0, 212, 168, 0.15);
            color: var(--brand-light);
        }

        .ph-book-status.status-pending {
            background: rgba(76, 111, 255, 0.15);
            color: var(--brand);
        }

        .ph-book-status.status-delayed {
            background: rgba(255, 107, 138, 0.15);
            color: #ff6b8a;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--background);
            padding: 5rem 1.5rem;
            z-index: 1;
        }

        @media (min-width: 640px) {
            .testimonials-section {
                padding: 6rem 2.5rem;
            }
        }

        .testimonials-title {
            
            font-weight: 500;
            margin-top: 1rem;
            line-height: 0.95;
            letter-spacing: -0.02em;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-top: 3.5rem;
            list-style: none;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            background: var(--surface);
            border-radius: var(--radius-card);
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            transition: transform 0.1s ease;
            border: 1px solid var(--hairline);
        }

        .testimonial-quote-icon {
            
            font-weight: 500;
            color: var(--brand);
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.125rem;
            line-height: 1.5;
            color: var(--ink);
            margin-top: 1rem;
            flex-grow: 1;
        }

        .testimonial-author {
            border-top: 1px solid var(--hairline);
            padding-top: 1rem;
            margin-top: 1.5rem;
        }

        .author-name {
            font-weight: 600;
        }

        .author-role {
            font-size: 0.875rem;
            color: inherit; opacity: 0.8;
            margin-top: 2px;
        }

        /* Blog Section */
        .blog-section {
            background: var(--background);
            padding: 5rem 1.5rem;
            z-index: 1;
        }

        @media (min-width: 640px) {
            .blog-section {
                padding: 6rem 2.5rem;
            }
        }

        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 3.5rem;
        }

        @media (min-width: 768px) {
            .blog-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .blog-card {
            background: var(--surface);
            border-radius: var(--radius-card);
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            transition: all 0.3s;
            border: 1px solid var(--hairline);
        }

        .blog-card:hover {
            background: var(--surface-card);
            border-color: var(--brand);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .blog-tag {
            background: rgba(76, 111, 255, 0.15);
            color: var(--brand-light);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .blog-read-time {
            font-size: 0.75rem;
            color: inherit; opacity: 0.8;
        }

        .blog-title {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .blog-desc {
            font-size: 0.875rem;
            color: inherit; opacity: 0.8;
            line-height: 1.5;
        }

        .blog-link {
            margin-top: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent-gold);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* Footer */
        footer {
            background: var(--brand-deep);
            color: #ffffff;
            border-radius: var(--radius-card-lg);
            margin-top: 0.75rem;
            padding: 3.5rem 1.5rem;
            z-index: 1;
        }

        @media (min-width: 640px) {
            footer {
                padding: 4rem 2.5rem;
            }
        }

        .footer-cta-band {
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 3.5rem;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
            gap: 1.5rem;
        }

        .footer-cta-title {
            font-size: 3.75rem;
            font-weight: 500;
            line-height: 0.92;
            letter-spacing: -0.02em;
            margin-top: 1rem;
        }

        .footer-grid {
            padding: 3.5rem 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1.4fr repeat(4, 1fr);
            }
        }

        .footer-brand-col {
            max-width: 20rem;
        }

        .footer-blurb {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
            margin-top: 1rem;
        }

        .footer-nav-col {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .footer-nav-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            font-size: 0.875rem;
        }

        .footer-nav-list a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.2s;
        }

        .footer-nav-list a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 2rem;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-badges {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .footer-badges img {
            height: 1.75rem;
            opacity: 0.5;
        }

        /* Modal Backdrop */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 90;
            display: flex;
            align-items: flex-end;
            padding: 0.75rem;
            pointer-events: none;
        }

        @media (min-width: 640px) {
            .modal-overlay {
                align-items: center;
                justify-content: center;
                padding: 1.5rem;
            }
        }

        .modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(8, 11, 24, 0.85);
            backdrop-filter: blur(8px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modal-panel {
            position: relative;
            width: 100%;
            max-height: 92vh;
            overflow-y: auto;
            background: var(--surface);
            border-radius: var(--radius-card-lg);
            padding: 1.5rem;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            color: #ffffff;
            z-index: 95;
            transform: translateY(2rem) scale(0.96);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid var(--hairline);
        }

        @media (min-width: 640px) {
            .modal-panel {
                max-width: 32rem;
                padding: 2.25rem;
            }
        }

        .modal-overlay.active {
            pointer-events: auto;
        }

        .modal-overlay.active .modal-backdrop {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-overlay.active .modal-panel {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .modal-title {
            
            font-weight: 500;
            line-height: 0.95;
            letter-spacing: -0.02em;
            margin-top: 0.75rem;
        }

        .modal-close {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.05);
            display: grid;
            place-items: center;
            transition: background-color 0.2s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .modal-close svg {
            width: 1rem;
            height: 1rem;
            color: #ffffff;
            transition: transform 0.1s ease;
        }

        .modal-form {
            margin-top: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: inherit; opacity: 0.8;
        }

        .form-input {
            width: 100%;
            border-radius: 0.75rem;
            border: 1px solid var(--hairline);
            background: var(--surface);
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            color: var(--ink);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--brand);
        }

        .btn-submit {
            border-radius: var(--radius-pill);
            background: var(--brand);
            color: #ffffff;
            padding: 0.875rem 1.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: background-color 0.3s;
            width: fit-content;
            margin-top: 0.5rem;
        }

        .btn-submit:hover {
            background: #3b5bdb;
        }

        .btn-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Fullscreen Menu Overlay (Mobile) */
        .menu-overlay {
            position: fixed;
            inset: 0;
            z-index: 999999;
            display: flex;
            flex-direction: column;
            pointer-events: none;
        }

        .menu-backdrop {
            position: absolute;
            inset: 0;
            background: var(--background);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .menu-panel {
            position: relative;
            height: 100%;
            width: 100%;
            padding: 0;
            z-index: 75;
            opacity: 0;
            transform: translateY(-2rem);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .menu-overlay.active {
            pointer-events: auto;
        }

        .menu-overlay.active .menu-backdrop {
            opacity: 1;
            pointer-events: auto;
        }

        .menu-overlay.active .menu-panel {
            transform: translateY(0);
            opacity: 1;
        }

        .menu-inner {
            width: 100%;
            flex: 1 1 auto;
            min-height: 0;
            border-radius: 0;
            background: var(--surface);
            border: none;
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
            color: var(--ink);
            overflow-y: auto;
            overflow-x: clip;
            -webkit-overflow-scrolling: touch;
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        /* Override global .logo-mark size inside mobile menu */
        .menu-logo .logo-mark {
            width: auto !important;
            height: 28px !important;
            max-width: none !important;
        }

        .menu-close {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius-pill);
            background: rgba(0, 0, 0, 0.05);
            display: grid;
            place-items: center;
            transition: background 0.3s;
        }

        .menu-close:hover {
            background: rgba(0, 0, 0, 0.12);
        }

        .menu-close svg {
            width: 1rem;
            height: 1rem;
            color: var(--ink);
        }

        @media (min-width: 1024px) {
            @media (min-width: 1024px) {
                .menu-inner {
                    padding: 4rem 6rem;
                }
            }

            .menu-nav {
                margin: 2rem 0;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }

            .menu-link {
                font-size: 2.5rem;
                font-weight: 500;
                text-transform: uppercase;
                line-height: 1.1;
                letter-spacing: -0.02em;
                transition: color 0.3s;
                width: fit-content;
            }

            .menu-link:hover {
                color: var(--brand-light);
            }

            .menu-footer {
                border-top: 1px solid rgba(0, 0, 0, 0.08);
                padding-top: 2rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                margin-top: auto;
            }

            .menu-footer .btn-pill {
                width: 200px;
                justify-content: center;
            }
        }

            /* Offcanvas Mega Menu Body Styles */
            .menu-mega-body {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                flex: 1 1 auto;
                min-height: 0;
                overflow-y: auto;
                overflow-x: clip;
                -webkit-overflow-scrolling: touch;
                padding: 0.5rem 0;
            }

            @media (min-width: 640px) {
                .menu-mega-body {
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr;
                    gap: 1.5rem;
                }
            }

            .menu-mega-col {
                display: flex;
                flex-direction: column;
                gap: 0.25rem;
            }

            .menu-mega-title {
                font-size: 0.7rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.12em;
                color: var(--brand);
                padding-bottom: 0.625rem;
                margin-bottom: 0.5rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            }

            .menu-mega-item {
                display: flex;
                align-items: flex-start;
                gap: 0.75rem;
                padding: 0.875rem 1rem;
                border-radius: 0.625rem;
                border: 1px solid transparent;
                transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
                color: inherit; opacity: 0.8;
                text-decoration: none;
            }

            .menu-mega-item:hover {
                background: rgba(0, 0, 0, 0.04);
                border-color: rgba(0, 0, 0, 0.06);
                color: var(--ink);
                transform: translateX(6px);
            }

            .menu-mega-icon {
                font-size: 1.4rem;
                flex-shrink: 0;
                margin-top: 1px;
            }

            .menu-mega-name {
                display: block;
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--ink);
            }

            .menu-mega-desc {
                font-size: 0.85rem;
                color: inherit; opacity: 0.8;
                margin-top: 4px;
                line-height: 1.5;
            }

            /* Mobile Modules Section Padding Override */
            @media (max-width: 767px) {
                .programs-section {
                    background: #080b18 !important;
                    padding: 20px !important;
                    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
                }

                #modules>div {
                    max-width: 100% !important;
                    width: 100% !important;
                    padding-left: 0 !important;
                    padding-right: 0 !important;
                    margin-left: 0 !important;
                    margin-right: 0 !important;
                }

                #modules .modules-grid {
                    padding-left: 0 !important;
                    padding-right: 0 !important;
                    margin-left: 0 !important;
                    margin-right: 0 !important;
                    gap: 1rem !important;
                }

                #modules .module-card {
                    padding: 1.5rem 1.25rem !important;
                    margin-left: 0 !important;
                    margin-right: 0 !important;
                    width: 100% !important;
                }
            }



            /* ── MOBILE HEADING AND PADDING OVERRIDES ── */
            @media (max-width: 767px) {

                /* Force all major section titles and headers to 2.6rem */
                .hero-title,
                .dashboard-intro h2,
                .clip-mask-wrapper,
                .programs-title,
                .stats-title,
                .testimonials-title,
                .problem-header h2, .feature-content h2, .mobile-content h2, .comparison-header h2 { font-size: 2rem !important; line-height: 1.05 !important; } .footer-cta-title { font-size: 1.8rem !important; line-height: 1.05 !important; white-space: nowrap !important; }

                /* Force exactly 20px left and right padding on all section wrappers and header inner containers */
                .dashboard-section,
                .problem-section,
                .programs-section,
                .interactive-feature-section,
                .mobile-section,
                .comparison-section,
                .testimonials-section,
                .footer-cta-band,
                .dashboard-intro,
                .problem-header,
                .feature-content,
                .mobile-content,
                .comparison-header {
                    padding-left: 20px !important;
                    padding-right: 20px !important;
                    margin-left: 0 !important;
                    margin-right: 0 !important;
                    box-sizing: border-box !important;
                    max-width: 100% !important;
                }
            }


            /* ── MOBILE ACCORDION AND IMPROVEMENTS OVERRIDES ── */
            @media (max-width: 1023px) {

                /* Stats Section Padding Override */
                #comparison.stats-section {
                    padding: 4rem 20px !important;
                }

                #comparison .stats-grid {
                    padding-left: 0 !important;
                    padding-right: 0 !important;
                    margin-left: 0 !important;
                    margin-right: 0 !important;
                }

                #comparison .stat-card {
                    padding: 2rem 1rem !important;
                }

                /* Footer Accordion styling */
                .footer-grid {
                    gap: 0 !important;
                    padding-bottom: 0 !important;
                }

                .footer-nav-col {
                    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                    padding-bottom: 0 !important;
                    gap: 0 !important;
                }

                .footer-nav-col:last-of-type {
                    border-bottom: none;
                }

                .footer-nav-title {
                    display: flex !important;
                    align-items: center !important;
                    justify-content: space-between !important;
                    cursor: pointer !important;
                    padding: 1rem 0 !important;
                    user-select: none !important;
                    width: 100% !important;
                }

                .footer-nav-title::after {
                    content: "+";
                    font-size: 1.1rem;
                    font-weight: 300;
                    transition: transform 0.2s ease;
                    color: var(--brand-light, #ffd700);
                }

                .footer-nav-col.open .footer-nav-title::after {
                    content: "−";
                }

                .footer-nav-list {
                    max-height: 0;
                    overflow: hidden;
                    opacity: 0;
                    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
                    padding-top: 0;
                }

                .footer-nav-col.open .footer-nav-list {
                    max-height: 300px;
                    opacity: 1;
                    padding-top: 0.75rem;
                }
            }

            /* Menu Link Font Sizes & Accordion Styles */
            .menu-link,
            .menu-accordion-trigger {
                font-size: 1.6rem !important;
                font-weight: 500 !important;
                text-transform: uppercase !important;
                line-height: 1.2 !important;
                letter-spacing: -0.01em !important;
                color: #ffffff !important;
                text-decoration: none !important;
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                padding: 0.85rem 0 !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
                cursor: pointer !important;
                width: 100% !important;
                user-select: none !important;
            }

            @media (min-width: 640px) {

                .menu-link,
                .menu-accordion-trigger {
                    font-size: 2.2rem !important;
                }
            }

            .menu-accordion-item {
                width: 100% !important;
            }

            .menu-accordion-content {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                padding-left: 0.75rem;
            }

            .menu-accordion-item.open .menu-accordion-content {
                max-height: 350px;
                opacity: 1;
                padding-top: 0.5rem;
                padding-bottom: 0.5rem;
            }

            .menu-child-link {
                font-size: 1.15rem !important;
                color: rgba(255, 255, 255, 0.7) !important;
                text-decoration: none !important;
                padding: 0.4rem 0 !important;
                transition: color 0.2s !important;
                font-weight: 400 !important;
                display: block !important;
            }

            .menu-child-link:hover {
                color: var(--brand-light, #ffd700) !important;
            }

            .menu-acc-icon {
                font-size: 1.2rem;
                color: rgba(255, 255, 255, 0.4);
                transition: transform 0.2s ease;
            }


            /* ==========================================================================
       TABLET & DESKTOP SCALE-UP OVERRIDES (1024px+)
       ========================================================================== */
            @media (min-width: 1024px) {

                /* Typography scale-up */
                .eyebrow {
                    font-size: 0.85rem !important;
                    letter-spacing: 0.12em !important;
                }

                /* Dashboard Section scaling */
                .dashboard-intro h2 {
                    font-size: 3.8rem !important;
                    margin-bottom: 2rem !important;
                }

                .dashboard-intro p {
                    font-size: 1rem !important;
                    line-height: 1.65 !important;
                    margin-bottom: 2.5rem !important;
                }

                .dashboard-mock {
                    max-width: 44rem !important;
                    /* Larger mock on desktop */
                    padding: 2rem !important;
                    border-radius: 1.25rem !important;
                }

                .mock-tab {
                    padding: 0.5rem 1rem !important;
                    font-size: 0.8rem !important;
                }

                .mock-switcher {
                    padding: 0.5rem 1rem !important;
                    font-size: 0.78rem !important;
                }

                .mock-metrics {
                    gap: 0.75rem !important;
                    margin-bottom: 1.5rem !important;
                }

                .mock-metric {
                    padding: 1rem 0.75rem !important;
                    border-radius: 0.75rem !important;
                }

                .mock-metric-num {
                    font-size: 1.5rem !important;
                }

                .mock-metric-lbl {
                    font-size: 0.65rem !important;
                    margin-top: 0.375rem !important;
                }

                .mock-section-title {
                    font-size: 0.72rem !important;
                    margin-bottom: 0.75rem !important;
                }

                .mock-bookings {
                    padding: 1.25rem !important;
                    border-radius: 0.875rem !important;
                }

                .mock-row {
                    padding: 0.625rem 0 !important;
                }

                .mock-row-name {
                    font-size: 0.82rem !important;
                }

                .mock-row-sub {
                    font-size: 0.72rem !important;
                }

                .mock-tag {
                    font-size: 0.62rem !important;
                    padding: 3px 7px !important;
                }

                .mock-amount {
                    font-size: 0.82rem !important;
                }

                .mock-chart-box {
                    padding: 1.25rem !important;
                    border-radius: 0.875rem !important;
                }

                .mock-bars {
                    height: 100px !important;
                    gap: 0.5rem !important;
                }

                .mock-chart-labels {
                    margin-top: 0.625rem !important;
                    gap: 0.5rem !important;
                }

                .mock-chart-labels span {
                    font-size: 0.65rem !important;
                }

                .mock-status-row {
                    gap: 0.75rem !important;
                    margin-top: 1rem !important;
                }

                .mock-status {
                    padding: 0.75rem !important;
                    border-radius: 0.75rem !important;
                }

                .status-dot {
                    width: 0.5rem !important;
                    height: 0.5rem !important;
                }

                .mock-status-text {
                    font-size: 0.7rem !important;
                }

                .mock-status-text strong {
                    font-size: 0.78rem !important;
                }

                /* Problem Section scaling */
                .problem-header h2 {
                    font-size: 4.2rem !important;
                }

                .problem-header p {
                    font-size: 1rem !important;
                }

                .bento-card {
                    height: 420px !important;
                    /* Taller bento cards */
                    padding: 2rem !important;
                }

                .bento-title {
                    font-size: 1.15rem !important;
                    margin-bottom: 0.5rem !important;
                }

                .bento-desc {
                    font-size: 0.875rem !important;
                    margin-bottom: 1.5rem !important;
                }

                /* Bento Visuals */
                .bento-flow-row {
                    padding: 0.75rem 1rem !important;
                    font-size: 0.82rem !important;
                }

                .bento-flow-arrow {
                    font-size: 1.1rem !important;
                }

                .bento-metric-val {
                    font-size: 2rem !important;
                }

                .bento-chart-bars {
                    height: 65px !important;
                }

                .bento-cal-grid {
                    gap: 0.5rem !important;
                    max-width: 14rem !important;
                }

                .bento-cal-cell {
                    font-size: 0.82rem !important;
                }

                .bento-cal-badge {
                    font-size: 0.55rem !important;
                    padding: 2px 4px !important;
                }

                .bento-aadhaar-card {
                    padding: 1.125rem !important;
                    max-width: 19rem !important;
                }

                .bento-aadhaar-header span {
                    font-size: 0.8rem !important;
                }

                .bento-aadhaar-body {
                    font-size: 0.72rem !important;
                    line-height: 1.5 !important;
                }

                .bento-kyc-step {
                    font-size: 0.82rem !important;
                    gap: 0.5rem !important;
                }

                .bento-task-row {
                    font-size: 0.78rem !important;
                    padding: 0.625rem 0.75rem !important;
                }

                .bento-task-dot {
                    width: 8px !important;
                    height: 8px !important;
                }

                /* Capabilities Feature Grid scaling */
                .feature-content h2 {
                    font-size: 3.8rem !important;
                    margin-bottom: 2rem !important;
                }

                .feature-content p {
                    font-size: 1rem !important;
                    line-height: 1.65 !important;
                    margin-bottom: 2.5rem !important;
                }

                .feature-point-icon {
                    width: 3.2rem !important;
                    height: 3.2rem !important;
                    font-size: 1.35rem !important;
                    border-radius: 0.875rem !important;
                }

                .feature-point-text h4 {
                    font-size: 1.05rem !important;
                }

                .feature-point-text p {
                    font-size: 0.875rem !important;
                }

                /* Detailed Capability visual widgets */
                .booking-engine-vis {
                    max-width: 34rem !important;
                    /* Larger visual card */
                    padding: 2rem !important;
                    border-radius: 1.25rem !important;
                }

                .booking-type-btn {
                    padding: 1.25rem 0.75rem !important;
                    border-radius: 1rem !important;
                }

                .bt-icon {
                    font-size: 1.75rem !important;
                }

                .bt-name {
                    font-size: 0.82rem !important;
                }

                .bt-desc {
                    font-size: 0.68rem !important;
                }

                .calendar-strip {
                    padding: 1.125rem !important;
                    border-radius: 1rem !important;
                    min-height: 7.5rem !important;
                }

                .cal-day-cell {
                    padding: 0.75rem 0.375rem !important;
                    border-radius: 0.75rem !important;
                }

                .cal-d {
                    font-size: 0.72rem !important;
                }

                .cal-n {
                    font-size: 1.05rem !important;
                }

                .cal-label {
                    font-size: 0.62rem !important;
                    margin-top: 6px !important;
                }

                /* POS Sync visual */
                .pos-sync-vis {
                    max-width: 34rem !important;
                    padding: 2rem !important;
                    border-radius: 1.25rem !important;
                }

                .sync-node {
                    padding: 0.875rem 0.75rem !important;
                    border-radius: 1rem !important;
                }

                .sync-node-name {
                    font-size: 0.875rem !important;
                }

                .sync-node-sub {
                    font-size: 0.68rem !important;
                }

                .sync-receipt {
                    padding: 1.125rem !important;
                    border-radius: 1rem !important;
                }

                .receipt-row {
                    font-size: 0.875rem !important;
                    padding: 0.5rem 0 !important;
                }

                .receipt-row.total span:last-child {
                    font-size: 1.05rem !important;
                }

                .sync-badge {
                    font-size: 0.78rem !important;
                    padding: 6px 14px !important;
                }

                /* Multi-Vendor visual */
                .vendor-vis {
                    max-width: 34rem !important;
                    padding: 2rem !important;
                    border-radius: 1.25rem !important;
                }

                .v-layer {
                    padding: 0.875rem 1.25rem !important;
                    border-radius: 1rem !important;
                }

                .vl-dot {
                    width: 10px !important;
                    height: 10px !important;
                }

                .vl-name {
                    font-size: 0.95rem !important;
                }

                .vl-desc {
                    font-size: 0.78rem !important;
                }

                .vl-tag {
                    font-size: 0.68rem !important;
                    padding: 3px 8px !important;
                }

                .biz-pill {
                    padding: 5px 12px !important;
                    font-size: 0.72rem !important;
                }

                /* Mobile App Section scaling */
                .mobile-content h2 {
                    font-size: 3.8rem !important;
                    margin-bottom: 2rem !important;
                }

                .mobile-content p {
                    font-size: 1rem !important;
                    line-height: 1.65 !important;
                    margin-bottom: 2.5rem !important;
                }

                .mob-feat-card {
                    padding: 1.25rem 1.5rem !important;
                    border-radius: 1rem !important;
                }

                .mob-feat-card-icon {
                    font-size: 1.5rem !important;
                }

                .mob-feat-card-name {
                    font-size: 0.95rem !important;
                }

                .mob-feat-card-desc {
                    font-size: 0.78rem !important;
                }

                .phone-frame {
                    width: 300px !important;
                    /* Scale up phone frame */
                    padding: 20px 18px !important;
                    border-radius: 44px !important;
                }

                .phone-screen {
                    min-height: 480px !important;
                    border-radius: 26px !important;
                }

                /* Comparison Section scaling */
                .comparison-header h2 {
                    font-size: 3.8rem !important;
                    margin-bottom: 2rem !important;
                }

                .comparison-header p {
                    font-size: 1rem !important;
                }

                .comp-table {
                    width: 100%;
                    border-collapse: collapse;
                    text-align: left;
                    font-size: 0.9375rem;
                    color: var(--ink);
                }

                .comp-table thead th {
                    font-size: 0.85rem !important;
                    padding: 1.25rem 1.75rem !important;
                }

                .comp-table td {
                    padding: 1.25rem 1.75rem !important;
                }

                .comp-feature {
                    font-size: 0.98rem !important;
                }

                .comp-sub {
                    font-size: 0.78rem !important;
                }

                .check-yes {
                    font-size: 1.2rem !important;
                }

                /* Modules grid spacing */
                .module-card {
                    padding: 2.25rem !important;
                }

                .module-icon {
                    width: 3.8rem !important;
                    height: 3.8rem !important;
                    font-size: 1.6rem !important;
                    border-radius: 1rem !important;
                }

                .mod-name {
                    font-size: 1.35rem !important;
                }

                .mod-desc {
                    font-size: 0.875rem !important;
                }

                .mod-feat {
                    font-size: 0.8rem !important;
                }
            }

            /* ==========================================================================
       LARGE DESKTOP SCALE-UP OVERRIDES (1440px+)
       ========================================================================== */
            @media (min-width: 1440px) {

                .dashboard-intro h2,
                .feature-content h2,
                .mobile-content h2,
                .comparison-header h2 {
                    font-size: 4.6rem !important;
                }

                .problem-header h2 {
                    font-size: 5rem !important;
                }

                .dashboard-mock {
                    max-width: 50rem !important;
                    /* Even larger on wide screens */
                }

                .booking-engine-vis,
                .pos-sync-vis,
                .vendor-vis {
                    max-width: 38rem !important;
                }

                .phone-frame {
                    width: 340px !important;
                    padding: 22px 20px !important;
                }

                .phone-screen {
                    min-height: 550px !important;
                }
            }


            /* --- HeroSection.css Added --- */
            .hero-wrapper {
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                font-family: var(--sans);
                background: var(--paper);
                color: var(--ink);
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            .u-draw {
                text-decoration: none;
                border-bottom: 1px solid var(--line);
                padding-bottom: 1px;
                transition:
                    border-color var(--t-med) var(--ease-out),
                    opacity 160ms var(--ease-out);
            }

            .u-draw:focus-visible {
                border-bottom-color: var(--ink);
            }

            .u-draw:active {
                opacity: 0.55;
            }

            @media (hover: hover) and (pointer: fine) {
                .u-draw:hover {
                    border-bottom-color: var(--ink);
                }
            }

            nav.top {
                height: var(--nav);
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                z-index: 60;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 clamp(20px, 3.4vw, 48px);
                background: transparent;
            }

            nav.top .mark {
                font-family: var(--sans);
                font-weight: 700;
                font-size: 13px;
                letter-spacing: 0.34em;
                color: #ffffff;
                text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
                background: none;
                border: 0;
                cursor: pointer;
                padding: 10px 2px;
                margin: -10px -2px;
                line-height: 1;
            }

            nav.top .nav-right {
                display: flex;
                align-items: center;
                gap: clamp(14px, 2.4vw, 34px);
            }

            .navlink {
                font-family: var(--mono);
                font-size: 11px;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.96);
                background: none;
                border: 0;
                text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
                cursor: pointer;
                padding: 10px 3px 2px;
                margin: -10px -3px 0;
                line-height: 1;
                border-bottom: 1px solid transparent;
            }

            nav.top .u-draw:focus-visible {
                border-bottom-color: #ffffff;
            }

            @media (hover: hover) and (pointer: fine) {
                nav.top .u-draw:hover {
                    border-bottom-color: #ffffff;
                }
            }

            .hero-main {
                flex: 1 1 auto;
                display: flex;
                min-height: 0;
            }

            .hero {
                position: relative;
                flex: 1 1 auto;
                min-height: 520px;
                overflow: hidden;
                isolation: isolate;
                background: #0b0b0b;
            }

            .hero-media {
                position: absolute;
                inset: 0;
                z-index: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: 50% 42%;
                display: block;
                filter: saturate(1.02) brightness(1.06) contrast(1.01);
            }

            .hero-scrim {
                position: absolute;
                inset: 0;
                z-index: 1;
                pointer-events: none;
                background:
                    linear-gradient(180deg,
                        rgba(10, 8, 6, 0.52) 0%,
                        rgba(10, 8, 6, 0.2) 14%,
                        rgba(10, 8, 6, 0) 34%,
                        rgba(10, 8, 6, 0.5) 72%,
                        rgba(10, 8, 6, 0.7) 100%),
                    linear-gradient(100deg,
                        rgba(10, 8, 6, 0.44) 0%,
                        rgba(10, 8, 6, 0.12) 44%,
                        rgba(10, 8, 6, 0) 68%);
            }

            .hero-content {
                position: relative;
                z-index: 2;
                min-height: 100%;
                width: 100%;
                margin: 0;
                padding: clamp(40px, 6vh, 72px) clamp(24px, 6.4vw, 104px);
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                align-items: flex-start;
                color: #ffffff;
            }

            .hero-title {
                font-family: var(--sans);
                font-weight: 400;
                font-size: clamp(40px, 5.2vw, 76px);
                line-height: 1.1;
                letter-spacing: -0.005em;
                max-width: 15ch;
                text-wrap: balance;
                color: #ffffff;
                text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
            }

            .hero-copy {
                margin-top: clamp(16px, 2.4vh, 24px);
                max-width: 44ch;
                color: rgba(255, 255, 255, 0.85);
                font-family: var(--sans);
                font-size: clamp(15px, 1.25vw, 19px);
                font-weight: 400;
                line-height: 1.5;
                text-wrap: pretty;
                text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
            }

            .hero-cta {
                display: inline-flex;
                align-items: center;
                gap: 14px;
                background: none;
                color: #ffffff !important;
                border: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.42);
                padding: 0 2px 9px;
                font-family: var(--mono);
                font-size: 14px !important;
                font-weight: 600 !important;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                line-height: 1;
                text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
                cursor: pointer;
                transition:
                    border-color var(--t-med) var(--ease-out),
                    opacity 160ms var(--ease-out);
            }

            .hero-cta .cta-arrow {
                display: inline-block;
                letter-spacing: 0;
                transition: transform var(--t-med) var(--ease-out);
            }

            .hero-cta:focus-visible {
                border-bottom-color: #ffffff;
            }

            .hero-cta:focus-visible .cta-arrow {
                transform: translateX(4px);
            }

            .hero-cta:active {
                opacity: 0.7;
            }

            .hero-foot {
                align-self: stretch;
                margin-top: clamp(26px, 4vh, 40px);
                display: flex;
                align-items: baseline;
                justify-content: space-between;
                gap: 18px 48px;
                flex-wrap: wrap;
            }

            .hero-foot .hero-cta {
                margin-top: 0;
            }

            .hero-cred {
                margin: 0;
                font-family: var(--sans);
                font-size: clamp(12px, 1.1vw, 15px);
                font-weight: 400;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                line-height: 1.7;
                color: rgba(255, 255, 255, 0.85);
                text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
            }

            .hero-cred strong {
                font-weight: 600;
                color: #ffffff;
            }

            @media (hover: hover) and (pointer: fine) {
                .hero-cta:hover {
                    border-bottom-color: #ffffff;
                }

                .hero-cta:hover .cta-arrow {
                    transform: translateX(4px);
                }
            }

            @media (prefers-reduced-motion: no-preference) {
                .hero-media {
                    animation: heroSettle 900ms var(--ease-out) both;
                }

                @keyframes heroSettle {
                    from {
                        transform: scale(1.035);
                    }

                    to {
                        transform: scale(1);
                    }
                }

                .rise {
                    animation: rise 520ms var(--ease-out) both;
                }

                .rise-1 {
                    animation-delay: 60ms;
                }

                .rise-2 {
                    animation-delay: 150ms;
                }

                .rise-3 {
                    animation-delay: 240ms;
                }

                @keyframes rise {
                    from {
                        transform: translateY(16px);
                    }

                    to {
                        transform: none;
                    }
                }
            }

            @media (max-width: 820px) {
                :root

                /* scoped */
                    {
                    --nav: 56px;
                }

                nav.top .mark {
                    font-size: 12px;
                    letter-spacing: 0.26em;
                }

                .navlink {
                    font-size: 9.5px;
                    letter-spacing: 0.14em;
                }

                nav.top .nav-right {
                    gap: 14px;
                }

                .hero-scrim {
                    background:
                        linear-gradient(0deg,
                            rgba(0, 0, 0, 0.85) 0%,
                            rgba(0, 0, 0, 0.76) 42%,
                            rgba(0, 0, 0, 0.6) 68%,
                            rgba(0, 0, 0, 0.08) 100%),
                        linear-gradient(180deg,
                            rgba(10, 8, 6, 0.6) 0%,
                            rgba(10, 8, 6, 0.24) 12%,
                            rgba(10, 8, 6, 0) 24%),
                        linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.05) 100%);
                }

                .hero-content {
                    padding: 36px 22px 44px;
                }

                .hero-copy {
                    max-width: 30ch;
                }
            }

            @media (max-width: 520px) {
                .hero {
                    min-height: 480px;
                }
            }

            @media (max-width: 360px) {
                nav.top .mark {
                    letter-spacing: 0.2em;
                }

                .hero {
                    min-height: 440px;
                }
            }

            @media (max-height: 600px) {
                .hero-content {
                    padding-top: 28px;
                    padding-bottom: 26px;
                }

                .hero-copy {
                    margin-top: 12px;
                }

                .hero-foot,
                .hero-cta {
                    margin-top: 18px;
                }
            }

            /* --- Border Radius for Hero & Scoped Reset --- */
            .hero-wrapper * {
                box-sizing: border-box;
            }

            .hero {
                border-radius: 0;
                margin: 0;
                width: 100%;
                flex: 1 1 auto !important;
                min-height: 0 !important;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .hero-wrapper {
                flex: 1 1 auto;
                display: flex;
                flex-direction: column;
                background: #000000 !important;
                border-radius: 0;
                margin: 0;
                overflow: hidden;
            }

            .hero-main {
                flex: 1 1 auto !important;
                flex-direction: column !important;
                display: flex;
                padding: 0 !important;
            }

            .hero-section {
                min-height: 90vh !important;
                padding-bottom: 0 !important;
                display: flex;
                flex-direction: column;
            }

            /* --- Hero Brand Logo Strip --- */
            .hero-brand-strip {
                background: #000000;
                padding: 16px 0 12px;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .hero-brand-label {
                text-align: center;
                font-family: var(--sans, sans-serif);
                font-size: 10px;
                font-weight: 600;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.4);
                margin: 0 0 16px;
                padding: 0 16px;
            }

            .hero-brand-track-wrapper {
                overflow: hidden;
                position: relative;
                width: 100%;
            }

            .hero-brand-track-wrapper::before,
            .hero-brand-track-wrapper::after {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                width: 60px;
                z-index: 2;
                pointer-events: none;
            }

            .hero-brand-track-wrapper::before {
                left: 0;
                background: linear-gradient(90deg, #000000, transparent);
            }

            .hero-brand-track-wrapper::after {
                right: 0;
                background: linear-gradient(-90deg, #000000, transparent);
            }

            .hero-brand-track {
                display: flex;
                align-items: center;
                gap: 16px;
                width: max-content;
                animation: heroBrandScroll 30s linear infinite;
            }

            @keyframes heroBrandScroll {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(-50%);
                }
            }

            .hero-brand-item {
                flex-shrink: 0;
                background: #f2f2f2;
                border: 1px solid rgba(0, 0, 0, 0.08);
                border-radius: 8px;
                padding: 8px 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 48px;
                width: 130px;
                box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
                transition: background 0.3s, box-shadow 0.3s;
            }

            .hero-brand-item:hover {
                background: #e8e8e8;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
            }

            .hero-brand-item img {
                max-height: 30px;
                max-width: 90px;
                filter: brightness(0);
                opacity: 1;
            }

            @media (max-width: 767px) {
                .hero-title {
                    font-size: 2.25rem !important;
                }

                .hero-brand-item {
                    width: calc(50vw - 48px);
                    min-width: 120px;
                    padding: 8px 12px;
                    height: 52px;
                }

                .hero-brand-item img {
                    max-height: 30px;
                    max-width: 90px;
                }

            }

/* ============================================================
       SECTION SIDE PADDING — same left/right as hero text (1.5rem mobile, 3.5rem desktop)
       ============================================================ */
        .dashboard-section,
        .problem-section,
        .programs-section,
        .interactive-feature-section,
        .mobile-section,
        .comparison-section,
        .testimonials-section,
        .features-section,
        .modules-section,
        .stats-section,
        .blog-section,
        footer {
            padding-left: 1.5rem !important;
            padding-right: 1.5rem !important;
            box-sizing: border-box !important;
        }

        @media (min-width: 1024px) {

            .dashboard-section,
            .problem-section,
            .programs-section,
            .interactive-feature-section,
            .mobile-section,
            .comparison-section,
            .testimonials-section,
            .features-section,
            .modules-section,
            .stats-section,
            .blog-section,
            footer {
                padding-left: 3.5rem !important;
                padding-right: 3.5rem !important;
            }
        }

        /* ============================================================
       HERO SECTION — Mobile: text overlays image
       ============================================================ */
        @media (max-width: 1023px) {

            /* Make hero a stacking context so content sits on top of image */
            .hero-section {
                position: relative !important;
                min-height: 100svh !important;
                display: flex !important;
                flex-direction: column !important;
                padding-bottom: 0 !important;
            }

            /* The dashboard mock (right column) hides on mobile — content goes on top of bg */
            .hero-right-side {
                display: none !important;
            }

            /* hero-content-grid becomes single column with text overlaying image */
            .hero-content-grid {
                position: relative !important;
                z-index: 2 !important;
                padding: 2rem 1.5rem !important;
                flex: 1 !important;
            }

            /* Ensure bg image still fills */
            .hero-bg {
                position: absolute !important;
                inset: 0 !important;
                top: 0 !important;
                height: 100% !important;
                z-index: 0 !important;
            }

            .hero-bg img {
                opacity: 0.35 !important;
                transform: scale(1.3) translateY(5%);
                transform-origin: bottom center;
            }

            .hero-left-side {
                position: relative !important;
                z-index: 2 !important;
            }
        }

        /* ============================================================
       HERO BRAND CAROUSEL — mobile: show ~2 cards, auto scroll
       ============================================================ */
        @media (max-width: 767px) {
            .hero-brand-item {
                width: calc(50vw - 24px) !important;
                min-width: 130px !important;
                max-width: 180px !important;
                flex-shrink: 0 !important;
            }
        }

@media (min-width: 1024px) {
                    #headerLogo {
                        left: clamp(24px, 6.4vw, 104px) !important;
                    }

                    #burgerBtn {
                        right: clamp(24px, 6.4vw, 104px) !important;
                    }
                }

/* --- USER REQUESTED MOBILE OVERRIDES --- */
@media (max-width: 767px) {
    .hero-content-grid {
        padding-top: 110px !important;
    }
    .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }
    .hero-sub {
        font-size: 1rem !important;
    }
    
    .hero-brand-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        animation: heroBrandScroll 30s linear infinite !important;
    }

    .hero-brand-item {
        /* Exactly 2 items per screen (50vw) minus half the gap (8px) */
        width: calc(50vw - 8px) !important;
        min-width: unset !important;
        max-width: unset !important;
        flex-shrink: 0 !important;
    }
}



        /* ============================================================
           COMPARISON TABLE — Mobile: horizontal scroll, no overflow
        ============================================================ */
        @media (max-width: 1023px) {
            .comp-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                border-radius: 0.75rem;
                /* Custom blue scrollbar matching section */
                scrollbar-width: thin;
                scrollbar-color: rgba(76, 111, 255, 0.6) rgba(255, 255, 255, 0.05);
            }

            /* Webkit scrollbar — blue to match section */
            .comp-table-wrap::-webkit-scrollbar {
                height: 5px;
            }
            .comp-table-wrap::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 999px;
            }
            .comp-table-wrap::-webkit-scrollbar-thumb {
                background: rgba(76, 111, 255, 0.6);
                border-radius: 999px;
            }
            .comp-table-wrap::-webkit-scrollbar-thumb:hover {
                background: rgba(76, 111, 255, 0.9);
            }

            /* Ensure table keeps its original column-based layout */
            .comp-table {
                display: table !important;
                width: auto !important;
                min-width: 600px;
                table-layout: fixed;
            }
            .comp-table thead { display: table-header-group !important; }
            .comp-table tbody { display: table-row-group !important; }
            .comp-table tfoot { display: table-footer-group !important; }
            .comp-table tr { display: table-row !important; }
            .comp-table th, .comp-table td { display: table-cell !important; }

            /* Compact font for mobile */
            .comp-table th, .comp-table td {
                font-size: 0.8rem !important;
                padding: 0.875rem 0.75rem !important;
            }
            .comp-feature { font-size: 0.8rem !important; }
            .comp-sub { font-size: 0.7rem !important; }

            /* Make first column stick */
            .comp-table th:first-child,
            .comp-table td:first-child {
                
                background: #050710;
                min-width: 130px;
                max-width: 160px;
            }
            .comp-table td.comp-pg:first-child {
                background: rgba(28, 42, 94, 0.9);
            }
        }


/* Infinite Carousel Marquee */
.gallery-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 4rem 0;
    background: #ffffff;
    perspective: 1200px;
}
.gallery-marquee {
    display: flex;
    width: max-content;
    animation: scroll-marquee 15s linear infinite;
    gap: 1.5rem;
    transform-style: preserve-3d;
}
.gallery-marquee:hover {
    animation-play-state: paused;
}
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.gallery-marquee-item {
    position: relative;
    height: 420px;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -15px 15px 25px rgba(0, 0, 0, 0.2);
    transform: rotateY(-15deg) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    flex-shrink: 0;
}
.gallery-marquee-item:hover {
    transform: rotateY(0deg) scale(1.08) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 10;
}
.gallery-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.marquee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    text-align: left;
    pointer-events: none;
}
.marquee-overlay h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.marquee-overlay p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .gallery-marquee-item {
        height: 320px;
        width: 240px;
        transform: rotateY(0deg) scale(1);
    }
}

/* Split Feature Section (Elevate Your Property) */
.split-feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1050px;
    margin: 6rem auto !important;
    padding: 0 24px;
    gap: 7rem; 
}
.split-feature-section.reverse {
    flex-direction: row-reverse;
}
.split-text {
    flex: 1;
    max-width: 450px; 
    width: 100%;
}
.split-image {
    flex: 1;
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.split-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
@media (max-width: 900px) {
    .split-feature-section, .split-feature-section.reverse {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem auto;
    }
    .split-text, .split-image {
        max-width: 100%;
    }
}

/* HOW IT WORKS SECTION (PixelGo Workflow) */
.how-it-works-section {
    background-color: #030712;
    padding: 6rem 24px;
    color: #ffffff;
    font-family: var(--sans, sans-serif);
    border-radius: 40px;
}
.hiw-container {
    max-width: 1280px;
    margin: 0 auto;
}
.hiw-header {
    margin-bottom: 4rem;
}
.hiw-eyebrow {
    color: #4C6FFF;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}
.hiw-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.hiw-subtitle {
    color: #9CA3AF;
    font-size: 1.125rem;
    margin-bottom: 0;
}
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hiw-card {
    background-color: #111827;
    border-radius: 32px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 360px;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
}
.hiw-card.reverse {
    flex-direction: row-reverse;
}
.hiw-image-col {
    flex: 1;
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
}
.hiw-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}
.hiw-step-num {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}
.hiw-card.reverse .hiw-step-num {
    left: auto;
    right: 1.5rem;
}
.hiw-content-col {
    flex: 1.2;
    padding: 2rem 3rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hiw-card.reverse .hiw-content-col {
    padding: 2rem 1rem 2rem 3rem;
}
.hiw-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.hiw-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}
.hiw-card-subtitle {
    color: #D1D5DB;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}
.hiw-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}
.hiw-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #E5E7EB;
    font-weight: 500;
}
.hiw-check {
    color: #4C6FFF;
    background: rgba(76, 111, 255, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.hiw-check svg {
    width: 12px;
    height: 12px;
}
@media (max-width: 900px) {
    .hiw-card, .hiw-card.reverse {
        flex-direction: column;
    }
    .hiw-image-col {
        min-height: 250px;
    }
    .hiw-content-col {
        padding: 2.5rem;
    }
    .hiw-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hiw-step-num {
        top: 1rem;
        left: 1rem;
        font-size: 4rem;
    }
    .hiw-card.reverse .hiw-step-num {
        right: auto;
        left: 1rem;
    }
}

/* 100% SEAMLESS ZERO-GAP INFINITE SNAKE MARQUEE */
.gallery-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 4rem 0;
    background: #ffffff;
    perspective: 1200px;
}
.gallery-marquee-scrim-left,
.gallery-marquee-scrim-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 20;
    pointer-events: none;
}
.gallery-marquee-scrim-left {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.gallery-marquee-scrim-right {
    right: 0;
    background: linear-gradient(-90deg, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.gallery-marquee {
    display: flex;
    width: max-content;
    animation: scroll-marquee-infinite 28s linear infinite !important;
    gap: 1.5rem;
    transform-style: preserve-3d;
    will-change: transform;
}
.gallery-marquee:hover {
    animation-play-state: paused !important;
}
@keyframes scroll-marquee-infinite {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-50% - 0.75rem), 0, 0); }
}
.gallery-marquee-item {
    position: relative;
    height: 420px;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -15px 15px 25px rgba(0, 0, 0, 0.12);
    transform: rotateY(-12deg) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    flex-shrink: 0;
}
.gallery-marquee-item:hover {
    transform: rotateY(0deg) scale(1.06) translateY(-10px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35) !important;
    z-index: 10;
}

/* Pulsing Live Dot Animation */
.live-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-glow 2s infinite;
    margin-right: 6px;
}
@keyframes pulse-glow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hover Micro-Interactions */
.stat-cell, .pain-card, .testimonial-card, .blog-card, .module-row {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.stat-cell:hover, .pain-card:hover, .testimonial-card:hover, .blog-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(76, 111, 255, 0.3) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}
.module-row:hover {
    background: rgba(76, 111, 255, 0.04) !important;
}
.module-row:hover .module-arrow {
    transform: translateX(6px);
    color: #4C6FFF;
}

/* HERO BRAND CAROUSEL 100% INFINITE ZERO-GAP LOOP */
.hero-brand-track-wrapper {
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
}
.hero-brand-track-wrapper::before,
.hero-brand-track-wrapper::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 80px !important;
    z-index: 2 !important;
    pointer-events: none !important;
}
.hero-brand-track-wrapper::before {
    left: 0 !important;
    background: linear-gradient(90deg, #000000 0%, transparent 100%) !important;
}
.hero-brand-track-wrapper::after {
    right: 0 !important;
    background: linear-gradient(-90deg, #000000 0%, transparent 100%) !important;
}
.hero-brand-track {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    width: max-content !important;
    animation: heroBrandScrollInfinite 35s linear infinite !important;
    will-change: transform !important;
}
.hero-brand-track:hover {
    animation-play-state: paused !important;
}
@keyframes heroBrandScrollInfinite {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-50% - 8px), 0, 0); }
}

/* DISABLE CURTAIN PRELOADER & HERO BLUR TRANSIENT EFFECTS */
.loader-curtain, #preloader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.rise, .rise-1, .rise-2, .rise-3 {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
}

/* ============================================================
   DESKTOP & TABLET WIDE MEGA MENU OVERLAY (>= 768px)
   ============================================================ */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
}
.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}
.menu-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(3, 7, 18, 0.82) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}
.menu-panel {
    position: relative !important;
    z-index: 2 !important;
    width: 92% !important;
    max-width: 1140px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    background: rgba(13, 17, 34, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    padding: 2.5rem 3rem !important;
    transform: scale(0.95) translateY(20px) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.menu-overlay.active .menu-panel {
    transform: scale(1) translateY(0) !important;
}

.menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    height: auto !important;
}

.menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 1.25rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* 3-Column Side-by-Side Grid on Desktop & Tablet (>= 768px) */
@media (min-width: 768px) {
    .menu-mega-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 2.5rem !important;
        align-items: start !important;
    }
}

@media (max-width: 767px) {
    .menu-panel {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }
    .menu-mega-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

.menu-mega-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.menu-mega-title {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #4C6FFF !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.25rem !important;
    border-bottom: 1px solid rgba(76, 111, 255, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.menu-mega-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.875rem !important;
    padding: 0.875rem 1rem !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.menu-mega-item:hover {
    background: rgba(76, 111, 255, 0.08) !important;
    border-color: rgba(76, 111, 255, 0.3) !important;
    transform: translateX(6px) !important;
}

.menu-mega-icon {
    font-size: 1.35rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.menu-mega-name {
    display: block !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
}

.menu-mega-desc {
    font-size: 0.82rem !important;
    color: #9CA3AF !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.menu-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 0.5rem !important;
}

/* ============================================================
   ULTRA-WIDE 1400px MEGA MENU (DARK GLASS + HIGH CONTRAST + HIDDEN SCROLLBAR)
   ============================================================ */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
}
.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}
.menu-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(3, 7, 18, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}
.menu-panel {
    position: relative !important;
    z-index: 2 !important;
    width: 96% !important;
    max-width: 1400px !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    background: #080c19 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    padding: 2.5rem 3.5rem !important;
    transform: scale(0.96) translateY(15px) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    
    /* HIDE UGLY SCROLLBAR COMPLETELY */
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.menu-panel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
.menu-overlay.active .menu-panel {
    transform: scale(1) translateY(0) !important;
}

.menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    height: auto !important;
}

.menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 1.25rem !important;
    border-bottom: none !important;
}

/* 3-Column Side-by-Side Wide Grid */
@media (min-width: 768px) {
    .menu-mega-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
    }
}

@media (max-width: 767px) {
    .menu-panel {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }
    .menu-mega-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

.menu-mega-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

/* HIGH-CONTRAST TEXT & HEADINGS (NO WHITE-ON-WHITE) */
.menu-mega-title {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: #60A5FA !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.25rem !important;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.menu-mega-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.menu-mega-item:hover {
    background: rgba(76, 111, 255, 0.12) !important;
    border-color: rgba(96, 165, 250, 0.35) !important;
    transform: translateX(8px) !important;
}

.menu-mega-icon {
    font-size: 1.45rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.menu-mega-name {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 3px !important;
}

.menu-mega-desc {
    font-size: 0.85rem !important;
    color: #94A3B8 !important;
    line-height: 1.45 !important;
    margin: 0 !important;
}

.menu-close {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.08) !important;
}

.menu-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 0.5rem !important;
}

/* ============================================================
   WHITE BACKGROUND MEGA MENU (CRISP DARK TEXT, NO DARK BACKDROP, NO OUTLINE)
   ============================================================ */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
}
.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Remove heavy dark backdrop */
.menu-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* CLEAN WHITE MODAL PANEL (NO BORDER / NO OUTLINE) */
.menu-panel {
    position: relative !important;
    z-index: 2 !important;
    width: 96% !important;
    max-width: 1400px !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border: none !important;
    outline: none !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15) !important;
    padding: 2.5rem 3.5rem !important;
    transform: scale(0.96) translateY(15px) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #0f172a !important;
    
    /* HIDE SCROLLBAR */
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.menu-panel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
.menu-overlay.active .menu-panel {
    transform: scale(1) translateY(0) !important;
}

.menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    height: auto !important;
}

.menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 1.25rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* 3-Column Side-by-Side Wide Grid */
@media (min-width: 768px) {
    .menu-mega-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
    }
}

@media (max-width: 767px) {
    .menu-panel {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }
    .menu-mega-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

.menu-mega-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

/* CRISP DARK TEXT & HEADINGS FOR WHITE BACKGROUND */
.menu-mega-title {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: #2563EB !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.25rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.menu-mega-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: 16px !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #0f172a !important;
    text-decoration: none !important;
}

.menu-mega-item:hover {
    background: #eff6ff !important;
    border-color: #bfdbfe !important;
    transform: translateX(8px) !important;
}

.menu-mega-icon {
    font-size: 1.45rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.menu-mega-name {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-bottom: 3px !important;
}

.menu-mega-desc {
    font-size: 0.85rem !important;
    color: #475569 !important;
    line-height: 1.45 !important;
    margin: 0 !important;
}

.menu-close {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.menu-close svg {
    stroke: #0f172a !important;
}

.menu-close:hover {
    background: #e2e8f0 !important;
    transform: scale(1.08) !important;
}

.menu-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid #e2e8f0 !important;
    margin-top: 0.5rem !important;
}

/* ============================================================
   MEGA MENU OVERLAY (100% ZERO BACKDROP BEHIND CARD)
   ============================================================ */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
    pointer-events: none !important;
}
.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* ZERO BACKDROP DIV BEHIND CARD */
.menu-backdrop, #menuBackdrop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* FLOATING WHITE MEGA MENU CARD ONLY */
.menu-panel {
    position: relative !important;
    z-index: 2 !important;
    width: 96% !important;
    max-width: 1400px !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border: none !important;
    outline: none !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
    padding: 2.5rem 3.5rem !important;
    transform: scale(0.96) translateY(15px) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #0f172a !important;
    pointer-events: auto !important;
    
    /* HIDE SCROLLBAR */
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.menu-panel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
.menu-overlay.active .menu-panel {
    transform: scale(1) translateY(0) !important;
}

.menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    height: auto !important;
}

.menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 1.25rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

@media (min-width: 768px) {
    .menu-mega-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
    }
}

@media (max-width: 767px) {
    .menu-panel {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }
    .menu-mega-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

.menu-mega-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

.menu-mega-title {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: #2563EB !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.25rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.menu-mega-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: 16px !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #0f172a !important;
    text-decoration: none !important;
}

.menu-mega-item:hover {
    background: #eff6ff !important;
    border-color: #bfdbfe !important;
    transform: translateX(8px) !important;
}

.menu-mega-icon {
    font-size: 1.45rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.menu-mega-name {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-bottom: 3px !important;
}

.menu-mega-desc {
    font-size: 0.85rem !important;
    color: #475569 !important;
    line-height: 1.45 !important;
    margin: 0 !important;
}

.menu-close {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.menu-close svg {
    stroke: #0f172a !important;
}

.menu-close:hover {
    background: #e2e8f0 !important;
    transform: scale(1.08) !important;
}

.menu-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid #e2e8f0 !important;
    margin-top: 0.5rem !important;
}

/* ============================================================
   SINGLE FLAT MEGA MENU CONTAINER (OUTER WHITE CARD DELETED)
   ============================================================ */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
    pointer-events: none !important;
}
.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* ZERO BACKDROP BEHIND CARD */
.menu-backdrop, #menuBackdrop {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* SINGLE FLAT DARK/GREY MEGA MENU CONTAINER (WHITE CARD DELETED) */
.menu-panel {
    position: relative !important;
    z-index: 2 !important;
    width: 96% !important;
    max-width: 1400px !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    background: #080b18 !important; /* Single flat grey/dark layout */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65) !important;
    padding: 2.5rem 3.5rem !important;
    transform: scale(0.96) translateY(15px) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    pointer-events: auto !important;
    
    /* HIDE SCROLLBAR */
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.menu-panel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
.menu-overlay.active .menu-panel {
    transform: scale(1) translateY(0) !important;
}

.menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 1.25rem !important;
    border-bottom: none !important;
    background: transparent !important;
}

@media (min-width: 768px) {
    .menu-mega-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
        background: transparent !important;
    }
}

@media (max-width: 767px) {
    .menu-panel {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }
    .menu-mega-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

.menu-mega-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    background: transparent !important;
}

.menu-mega-title {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: #4C6FFF !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.25rem !important;
    border-bottom: 1px solid rgba(76, 111, 255, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.menu-mega-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.menu-mega-item:hover {
    background: rgba(76, 111, 255, 0.15) !important;
    border-color: rgba(76, 111, 255, 0.4) !important;
    transform: translateX(8px) !important;
}

.menu-mega-icon {
    font-size: 1.45rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.menu-mega-name {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 3px !important;
}

.menu-mega-desc {
    font-size: 0.85rem !important;
    color: #9CA3AF !important;
    line-height: 1.45 !important;
    margin: 0 !important;
}

.menu-close {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.menu-close svg {
    stroke: #ffffff !important;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.08) !important;
}

.menu-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 0.5rem !important;
    background: transparent !important;
}

/* ============================================================
   SMOOTH MEGA MENU (BACKDROP BLUR + WIDE BUTTON + BUTTER-SMOOTH ANIMATION)
   ============================================================ */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease !important;
    pointer-events: none !important;
}
.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* BACKDROP OVERLAY WITH SMOOTH BLUR */
.menu-backdrop, #menuBackdrop {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(3, 7, 18, 0.65) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    opacity: 0 !important;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: auto !important;
}
.menu-overlay.active .menu-backdrop {
    opacity: 1 !important;
}

/* FLOATING MEGA MENU CARD WITH BUTTER-SMOOTH SPRING ANIMATION */
.menu-panel {
    position: relative !important;
    z-index: 2 !important;
    width: 96% !important;
    max-width: 1400px !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    background: #080b18 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7) !important;
    padding: 2.5rem 3.5rem !important;
    opacity: 0 !important;
    transform: scale(0.94) translateY(24px) !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    pointer-events: auto !important;
    will-change: transform, opacity !important;
    
    /* HIDE SCROLLBAR */
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.menu-panel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}
.menu-overlay.active .menu-panel {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
}

.menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 1.25rem !important;
    border-bottom: none !important;
}

@media (min-width: 768px) {
    .menu-mega-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
    }
}

@media (max-width: 767px) {
    .menu-panel {
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 1.5rem !important;
    }
    .menu-mega-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

.menu-mega-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

.menu-mega-title {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: #4C6FFF !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.25rem !important;
    border-bottom: 1px solid rgba(76, 111, 255, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.menu-mega-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.menu-mega-item:hover {
    background: rgba(76, 111, 255, 0.15) !important;
    border-color: rgba(76, 111, 255, 0.4) !important;
    transform: translateX(8px) !important;
}

.menu-mega-icon {
    font-size: 1.45rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

.menu-mega-name {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 3px !important;
}

.menu-mega-desc {
    font-size: 0.85rem !important;
    color: #9CA3AF !important;
    line-height: 1.45 !important;
    margin: 0 !important;
}

.menu-close {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.menu-close svg {
    stroke: #ffffff !important;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.08) !important;
}

/* FOOTER & WIDER PROMINENT BUTTON */
.menu-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding-top: 1.75rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 0.5rem !important;
}

.menu-footer .btn-pill {
    min-width: 260px !important;
    padding: 14px 36px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 99px !important;
    background: #4C6FFF !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    box-shadow: 0 10px 30px rgba(76, 111, 255, 0.35) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}

.menu-footer .btn-pill:hover {
    background: #3B5BDB !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 14px 36px rgba(76, 111, 255, 0.5) !important;
}

/* ============================================================
   HEADER DROPDOWN BUTTONS (VENDOR & RESELLER)
   ============================================================ */
.header-dropdown-wrap {
    position: relative !important;
    display: inline-block !important;
}
.header-dropdown-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 9px 18px !important;
    border-radius: 99px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.header-dropdown-btn.variant-brand {
    background: rgba(76, 111, 255, 0.25) !important;
    border-color: rgba(76, 111, 255, 0.4) !important;
}
.header-dropdown-btn:hover,
.header-dropdown-wrap:hover .header-dropdown-btn {
    background: rgba(76, 111, 255, 0.85) !important;
    border-color: #4C6FFF !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(76, 111, 255, 0.35) !important;
    transform: translateY(-1px) !important;
}
.dropdown-chevron {
    width: 14px !important;
    height: 14px !important;
    transition: transform 0.25s ease !important;
}
.header-dropdown-wrap.active .dropdown-chevron {
    transform: rotate(180deg) !important;
}

/* DROPDOWN MENU CARD */
.header-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    min-width: 240px !important;
    background: rgba(13, 17, 34, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    padding: 8px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) scale(0.96) !important;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease !important;
    z-index: 100000 !important;
}
/* :hover disabled for click-toggle — .active class controls display */

.dropdown-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}
.dropdown-item:hover {
    background: rgba(76, 111, 255, 0.15) !important;
    transform: translateX(4px) !important;
}
.item-icon {
    font-size: 1.1rem !important;
    line-height: 1 !important;
    margin-top: 2px !important;
}
.item-title {
    display: block !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}
.item-sub {
    display: block !important;
    font-size: 0.72rem !important;
    color: #9CA3AF !important;
    margin-top: 2px !important;
}

/* ============================================================
   100% SYMMETRICAL SITE HEADER PADDING (MATCHES DESKTOP MARGINS)
   ============================================================ */
.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    height: 100px !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

.header-logo, .header-actions {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
}
.header-actions {
    gap: 14px !important;
}

@media (min-width: 1400px) {
    .site-header {
        padding: 32px 80px !important; /* Symmetrical 80px on Ultra-Wide */
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .site-header {
        padding: 28px 60px !important; /* Symmetrical 60px on Desktop */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-header {
        padding: 24px 40px !important; /* Symmetrical 40px on Tablet */
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 20px 20px !important; /* Symmetrical 20px on Mobile */
    }
    .header-dropdown-btn span {
        display: none !important; /* Icon-only on mobile */
    }
    .header-dropdown-btn {
        padding: 8px 12px !important;
    }
}

/* RESTORED LOGO AT EXACT ORIGINAL POSITION (LEFT: 24px) & RESPONSIVE RIGHT ACTIONS */
@media (min-width: 1200px) {
    .header-actions-wrap {
        right: 60px !important;
    }
}
@media (max-width: 1199px) {
    .header-actions-wrap {
        right: 24px !important;
    }
}

/* ============================================================
   CANVAS HERO SCROLLTELLING SECTION (180 FRAMES)
   ============================================================ */
.hero-scroll-section {
    position: relative !important;
    height: 350vh !important;
    background: #000000 !important;
}

.hero-sticky-viewport {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000000 !important;
}

#heroCanvas {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background: #000000 !important;
}

.hero-canvas-scrim {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(180deg, rgba(9,2,0,0.2) 0%, rgba(9,2,0,0.5) 100%) !important; pointer-events: none !important;
    pointer-events: none !important;
}

.hero-scroll-phase {
    position: absolute !important;
    z-index: 10 !important;
    padding: 0 40px !important;
    max-width: 750px !important;
    text-align: center !important;
    opacity: 0 !important;
    transform: translateY(30px) scale(0.96) !important;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
}

.hero-scroll-phase.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.hero-scroll-phase.phase-1 {
    text-align: left !important;
    left: 60px !important;
    top: 25% !important;
}

@media (max-width: 767px) {
    .hero-scroll-phase.phase-1 {
        left: 0 !important;
        right: 24px !important;
        top: 20% !important;
    }
}

.phase-badge {
    display: inline-block !important;
    background: rgba(76, 111, 255, 0.2) !important;
    border: 1px solid rgba(76, 111, 255, 0.4) !important;
    color: #4C6FFF !important;
    padding: 6px 16px !important;
    border-radius: 99px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 1rem !important;
}

.phase-heading {
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
}

.phase-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem) !important;
    color: #D1D5DB !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.scroll-prompt {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 2rem !important;
    font-size: 0.78rem !important;
    color: #9CA3AF !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    animation: bounce-subtle 2s infinite !important;
}

.scroll-prompt svg {
    width: 16px !important;
    height: 16px !important;
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================================
   100% FULL-WIDTH HERO SCROLLTELLING SECTION (ZERO MARGIN, NO BOXING)
   ============================================================ */
main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-scroll-section {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 400vh !important; /* 4x viewport height for smooth scrolling */
    margin: 0 !important;
    padding: 0 !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background: #000000 !important;
    border-radius: 0 !important;
}

.hero-sticky-viewport {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000000 !important;
}

#heroCanvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background: #000000 !important;
    object-fit: cover !important;
}

.hero-canvas-scrim {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: linear-gradient(180deg, rgba(9,2,0,0.2) 0%, rgba(9,2,0,0.5) 100%) !important; pointer-events: none !important;
    pointer-events: none !important;
}

.hero-scroll-phase {
    position: absolute !important;
    z-index: 10 !important;
    padding: 0 40px !important;
    max-width: 750px !important;
    text-align: center !important;
    opacity: 0 !important;
    transform: translateY(30px) scale(0.96) !important;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
}

.hero-scroll-phase.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.hero-scroll-phase.phase-1 {
    text-align: left !important;
    left: 60px !important;
    top: 25% !important;
}

@media (max-width: 767px) {
    .hero-scroll-phase.phase-1 {
        left: 0 !important;
        right: 24px !important;
        top: 20% !important;
    }
}

/* REMOVE ALL CSS TRANSFORMS ON HERO SCROLL SECTION TO PRESERVE FIXED PINNING */
.hero-scroll-section, main {
    transform: none !important;
    perspective: none !important;
    filter: none !important;
    will-change: auto !important;
}

/* ============================================================
   SYMMETRICAL HEADER PADDING & LEFT-ALIGNED HERO OVERLAYS
   ============================================================ */
.header-logo-wrap {
    position: absolute !important;
    top: 24px !important;
    pointer-events: auto !important;
    display: block !important;
    text-decoration: none !important;
}

.header-actions-wrap {
    position: absolute !important;
    top: 24px !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

@media (min-width: 1024px) {
    .header-logo-wrap {
        left: 0 !important;
    }
    .header-actions-wrap {
        right: 60px !important; /* Exact 60px desktop padding matching sections */
    }
}

@media (max-width: 1023px) {
    .header-logo-wrap {
        left: 0 !important;
        top: 20px !important;
    }
    .header-actions-wrap {
        right: 24px !important;
        top: 20px !important;
    }
}

/* 100% LEFT-ALIGNED HERO SCROLLTELLING OVERLAYS */
.hero-scroll-phase {
    position: absolute !important;
    z-index: 10 !important;
    padding: 0 !important;
    max-width: 680px !important;
    text-align: left !important;
    opacity: 0 !important;
    transform: translateY(30px) scale(0.96) !important;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
}

.hero-scroll-phase.phase-1,
.hero-scroll-phase.phase-2,
.hero-scroll-phase.phase-3 {
    text-align: left !important;
    left: 60px !important;
    top: 28% !important;
}

@media (max-width: 1023px) {
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3 {
        left: 0 !important;
        right: 24px !important;
        max-width: calc(100vw - 48px) !important;
        top: 22% !important;
    }
}

/* ============================================================
   MOBILE & TABLET RESPONSIVE HERO SCROLLTELLING STYLES
   ============================================================ */
@media (max-width: 1023px) {
    .hero-scroll-section {
        height: 320vh !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
    }
    .hero-sticky-viewport {
        width: 100% !important;
        height: 100vh !important;
    }
    #heroCanvas {
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 767px) {
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3 {
        left: 16px !important;
        right: 16px !important;
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
        top: auto !important;
        bottom: 8% !important;
        text-align: center !important;
        background: rgba(8, 12, 25, 0.82) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 20px !important;
        padding: 1.25rem 1rem !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
    }
    .hero-title, .phase-heading {
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.5rem !important;
    }
    .hero-copy, .phase-sub {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    .hero-foot {
        margin-top: 0.75rem !important;
    }
    .hero-cta {
        padding: 10px 18px !important;
        font-size: 0.82rem !important;
    }
    .scroll-prompt {
        margin-top: 0.75rem !important;
        justify-content: center !important;
    }
}

/* ============================================================
   WHITE PILL BADGES & POP-UP GLASS MOTION WIDGETS
   ============================================================ */
.white-pill {
    background: #ffffff !important;
    color: #080c19 !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35) !important;
    padding: 7px 18px !important;
    border-radius: 99px !important;
    margin-bottom: 1.25rem !important;
    display: inline-block !important;
    letter-spacing: 0.08em !important;
}

.pos-widget-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 1.25rem 0 !important;
    flex-wrap: wrap !important;
}

.pos-chip {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    padding: 10px 16px !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pos-chip:hover {
    transform: translateY(-3px) scale(1.05) !important;
    border-color: rgba(76, 111, 255, 0.6) !important;
}

.chip-sync-arrow {
    color: #4C6FFF !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
}

.outlet-widget-grid {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin: 1.25rem 0 !important;
}

.outlet-chip {
    background: rgba(76, 111, 255, 0.18) !important;
    border: 1px solid rgba(76, 111, 255, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 99px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}

.hero-desc-widget {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-radius: 16px !important;
    padding: 1rem 1.25rem !important;
    margin-top: 1rem !important;
}

@media (max-width: 767px) {
    .mobile-phase1-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    .pos-widget-row {
        justify-content: center !important;
    }
    .outlet-widget-grid {
        justify-content: center !important;
    }
}

/* ============================================================
   FULL-BLEED MOBILE HERO CANVAS BEHIND HEADER (ZERO PADDING)
   ============================================================ */
@media (max-width: 1023px) {
    body, html, main {
        overflow-x: clip !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-scroll-section {
        position: relative !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 320vh !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .hero-sticky-viewport {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        z-index: 1 !important; /* Directly behind header */
    }

    #heroCanvas {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        background: transparent !important;
        pointer-events: none !important;
        padding: 0 !important;
    }

    .header-logo-wrap {
        left: 16px !important;
        top: 16px !important;
    }

    .header-actions-wrap {
        right: 16px !important;
        top: 16px !important;
    }
}

/* ============================================================
   100% PURE FULL-BLEED MOBILE HERO CANVAS (ZERO SCRIM, ZERO BLACK BARS)
   ============================================================ */
@media (max-width: 1023px) {
    html, body, main {
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: clip !important;
        background: #090200 !important;
    }

    .hero-scroll-section {
        position: relative !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 320vh !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        background: #090200 !important;
    }

    .hero-sticky-viewport {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        z-index: 1 !important;
        background: #090200 !important;
    }

    #heroCanvas {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    /* REMOVE DARK SCRIM GRADIENT AT TOP ON MOBILE */
    .hero-canvas-scrim {
        display: none !important;
        background: none !important;
    }

    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: 70px !important;
        z-index: 99999 !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: none !important;
    }

    .header-logo-wrap {
        position: absolute !important;
        left: 16px !important;
        top: 16px !important;
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: auto !important;
    }

    .header-actions-wrap {
        position: absolute !important;
        right: 16px !important;
        top: 16px !important;
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: auto !important;
    }
}

/* ============================================================
   ZERO BLACK STRIPE & COMPACT BOTTOM MOBILE OVERLAY CARDS
   ============================================================ */
@media (max-width: 1023px) {
    main > section.hero-scroll-section {
        padding: 0 !important;
        margin: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
    }
    
    .hero-sticky-viewport {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #heroCanvas {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    header {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: 70px !important;
        z-index: 99999 !important;
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: none !important;
    }

    /* COMPACT BOTTOM MOBILE OVERLAY CARDS */
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3 {
        left: 16px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        top: auto !important;
        bottom: 24px !important;
        text-align: center !important;
        background: rgba(8, 12, 25, 0.88) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 18px !important;
        padding: 0.9rem 1rem !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7) !important;
    }

    .hero-title, .phase-heading {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.35rem !important;
    }

    .hero-copy, .phase-sub {
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
    }

    .hero-desc-widget {
        padding: 0.6rem 0.8rem !important;
        margin-top: 0.5rem !important;
    }
}

/* ============================================================
   PURE TRANSPARENT OVERLAY & 5-PHASE PROGRESSIVE STORYTELLING
   ============================================================ */
@media (max-width: 767px) {
    /* REMOVE DARK CARD BACKGROUNDS ON MOBILE OVERLAYS */
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3,
    .hero-scroll-phase.phase-4,
    .hero-scroll-phase.phase-5 {
        left: 16px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        top: auto !important;
        bottom: 24px !important;
        text-align: left !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0 !important;
    }

    .hero-title.mobile-full-width,
    .phase-heading.mobile-full-width {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
        font-weight: 800 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9) !important;
        color: #ffffff !important;
    }

    .hero-copy, .phase-sub {
        font-size: 0.92rem !important;
        line-height: 1.4 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
        color: #e5e7eb !important;
    }
}

/* MEGA MENU OVERLAY FIX */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.menu-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.menu-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.menu-panel {
    position: relative !important;
    margin: auto !important;
    z-index: 2 !important;
    width: 92% !important;
    max-width: 1200px !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    background: #080c19 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8) !important;
    padding: 2.5rem !important;
    color: #ffffff !important;
}

.menu-columns-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

.menu-col-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #4C6FFF !important;
    margin-bottom: 1rem !important;
}

.menu-links-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

.menu-link-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background 0.2s, border-color 0.2s !important;
}

.menu-link-item:hover {
    background: rgba(76, 111, 255, 0.15) !important;
    border-color: rgba(76, 111, 255, 0.4) !important;
}

.menu-link-item.highlight-brand {
    background: rgba(76, 111, 255, 0.2) !important;
    border-color: rgba(76, 111, 255, 0.5) !important;
}

.link-title {
    display: block !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}

.link-sub {
    display: block !important;
    font-size: 0.75rem !important;
    color: #9CA3AF !important;
}

/* ============================================================
   MOBILE OFF-CANVAS SLIDE DRAWER & ONEST FONT HARMONY
   ============================================================ */
*, body, html, h1, h2, h3, h4, p, span, button, a {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* 1. Mobile Off-Canvas Drawer Menu (< 1024px) */
@media (max-width: 1023px) {
    .menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 999999 !important;
        display: block !important;
        pointer-events: none !important;
        opacity: 1 !important;
    }

    .menu-backdrop {
        position: absolute !important;
        inset: 0 !important;
        background: rgba(0, 0, 0, 0.65) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }

    .menu-panel {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 85vw !important;
        max-width: 340px !important;
        height: 100vh !important;
        background: #080c19 !important;
        border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 0 !important;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.85) !important;
        padding: 1.5rem !important;
        overflow-y: auto !important;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        pointer-events: auto !important;
        margin: 0 !important;
    }

    .menu-overlay.active .menu-backdrop {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .menu-overlay.active .menu-panel {
        transform: translateX(0) !important;
    }

    .menu-columns-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}

/* 2. Compact Refined White Pills & Onest Fonts */
.white-pill {
    background: #ffffff !important;
    color: #080c19 !important;
    font-weight: 700 !important;
    font-family: 'Onest', sans-serif !important;
    font-size: 0.72rem !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.28) !important;
    padding: 4px 14px !important;
    border-radius: 99px !important;
    margin-bottom: 0.75rem !important;
    display: inline-block !important;
    letter-spacing: 0.04em !important;
}

/* 3. Subtle Glass Bottom Panel on Mobile (24px from bottom) */
@media (max-width: 767px) {
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3,
    .hero-scroll-phase.phase-4,
    .hero-scroll-phase.phase-5 {
        left: 16px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        top: auto !important;
        bottom: 24px !important;
        text-align: left !important;
        background: rgba(8, 12, 25, 0.78) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        border-radius: 18px !important;
        padding: 1.1rem 1.25rem !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.65) !important;
    }

    .hero-title.mobile-full-width,
    .phase-heading.mobile-full-width {
        font-size: 1.35rem !important;
        line-height: 1.28 !important;
        font-weight: 700 !important;
        font-family: 'Onest', sans-serif !important;
        margin-bottom: 0.35rem !important;
        color: #ffffff !important;
        text-shadow: none !important;
    }

    .hero-copy, .phase-sub {
        font-size: 0.82rem !important;
        line-height: 1.38 !important;
        font-family: 'Onest', sans-serif !important;
        color: #9CA3AF !important;
        text-shadow: none !important;
    }
}

/* ============================================================
   FULL-SCREEN TRANSLUCENT GLASS CANVAS MENU (ZERO EMOJIS, ZERO DESCRIPTIONS)
   ============================================================ */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.menu-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.menu-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.menu-panel {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: rgba(8, 12, 25, 0.88) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 3rem 4rem !important;
    overflow-y: auto !important;
    transform: translateY(-100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    color: #ffffff !important;
    z-index: 2 !important;
}

.menu-overlay.active .menu-panel {
    transform: translateY(0) !important;
}

.menu-col-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #4C6FFF !important;
    margin-bottom: 1.25rem !important;
}

.menu-link-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: background 0.2s, border-color 0.2s, transform 0.2s !important;
}

.menu-link-item:hover {
    background: rgba(76, 111, 255, 0.18) !important;
    border-color: rgba(76, 111, 255, 0.45) !important;
    transform: translateX(4px) !important;
}

.link-bullet {
    color: #4C6FFF !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    transition: transform 0.2s !important;
}

.menu-link-item:hover .link-bullet {
    transform: translateX(4px) !important;
}

@media (max-width: 767px) {
    .menu-panel {
        padding: 2rem 1.5rem !important;
    }
}

/* ============================================================
   REFINED GLASS TRANSLUCENCY, FLOW ALIGNMENT & TYPOGRAPHY
   ============================================================ */

/* 1. Translucent Glass Card Overlay positioned 36px from bottom */
@media (max-width: 767px) {
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3,
    .hero-scroll-phase.phase-4,
    .hero-scroll-phase.phase-5 {
        left: 16px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        top: auto !important;
        bottom: 36px !important; /* Raised 36px up so Scroll to Explore fits comfortably */
        text-align: center !important;
        background: rgba(8, 12, 25, 0.65) !important; /* Perfect Translucent Glass Opacity */
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 18px !important;
        padding: 1rem 1.15rem !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5) !important;
    }

    .hero-title.mobile-full-width {
        font-size: 1.3rem !important;
        line-height: 1.25 !important;
        font-weight: 600 !important; /* Unbolded clean font */
        font-family: 'Onest', sans-serif !important;
        color: #ffffff !important;
        margin-bottom: 0.3rem !important;
    }

    .phase-sub-clean,
    .phase-heading-clean {
        font-size: 0.92rem !important;
        line-height: 1.4 !important;
        font-weight: 500 !important; /* Unbolded clean font */
        font-family: 'Onest', sans-serif !important;
        color: #e5e7eb !important;
        margin-top: 0.4rem !important;
    }
}

/* 2. Refined White Pills */
.white-pill {
    background: #ffffff !important;
    color: #080c19 !important;
    font-weight: 700 !important;
    font-family: 'Onest', sans-serif !important;
    font-size: 0.68rem !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25) !important;
    padding: 3px 12px !important;
    border-radius: 99px !important;
    margin-bottom: 0.6rem !important;
    display: inline-block !important;
    letter-spacing: 0.04em !important;
}

/* 3. Clean Flow Row (POS ➔ Room Folio ➔ Analytics) */
.sync-flow-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0.75rem 0 !important;
    font-size: 0.9rem !important;
    font-family: 'Onest', sans-serif !important;
    color: #ffffff !important;
    font-weight: 500 !important;
}

.flow-step {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
}

.flow-arrow {
    color: #4C6FFF !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

/* 4. Clean Inline Text List (Hotel • Restaurant • Bar • Resort • Banquet) */
.outlet-inline-list {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 0.75rem 0 !important;
    font-size: 0.88rem !important;
    font-family: 'Onest', sans-serif !important;
    color: #ffffff !important;
    font-weight: 500 !important;
}

.dot-sep {
    color: #4C6FFF !important;
    margin: 0 2px !important;
}

/* ============================================================
   PERMANENTLY STICKY HEADER & UNIFORM CARD HEIGHT ALIGNMENT
   ============================================================ */

/* 1. Permanently Sticky Top Header floating over all sections (Transparent in Hero, Dark Glass Past Hero) */
/* OLD PADDING BLOCK REMOVED — Replaced by clean flex-centered header below */


/* 2. Premium Experience Section Bright Text Colors */
.split-feature-section,
.split-feature-section * {
    color: #ffffff !important;
}

.split-feature-section .eyebrow {
    color: #4C6FFF !important;
    background: rgba(76, 111, 255, 0.15) !important;
    border: 1px solid rgba(76, 111, 255, 0.3) !important;
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 99px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
}

.split-feature-section .problem-title,
.split-feature-section h2 {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

.split-feature-section .problem-desc,
.split-feature-section p {
    color: #e5e7eb !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}


/* OLD ABSOLUTE POSITIONING BLOCK REMOVED — flex centering handles this */

/* 2. Uniform Card Height for ALL 5 Hero Overlay Phases */
@media (max-width: 767px) {
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3,
    .hero-scroll-phase.phase-4,
    .hero-scroll-phase.phase-5 {
        left: 16px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        top: auto !important;
        bottom: 100px !important; /* Uniform height matching Phase 5 */
        text-align: center !important;
        background: rgba(8, 12, 25, 0.68) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 18px !important;
        padding: 1rem 1.15rem !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5) !important;
    }
}

@media (min-width: 768px) {
    .hero-scroll-phase.phase-1,
    .hero-scroll-phase.phase-2,
    .hero-scroll-phase.phase-3,
    .hero-scroll-phase.phase-4,
    .hero-scroll-phase.phase-5 {
        left: 60px !important;
        top: auto !important;
        bottom: 120px !important; /* Uniform desktop height matching Phase 5 */
        max-width: 650px !important;
        text-align: left !important;
        background: rgba(8, 12, 25, 0.68) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 20px !important;
        padding: 1.5rem 2rem !important;
    }
}

/* 3. Explore More Button Centering & No Underline */
.hero-foot {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 0.85rem !important;
}

.hero-cta {
    text-decoration: none !important;
    border-bottom: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.hero-cta:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* ============================================================
   HEADER VERTICAL CENTERING, RESTORED TYPOGRAPHY & MOBILE WORKFLOW CAROUSEL
   ============================================================ */

/* 1. Header Vertically Centered Actions & Equal Top/Bottom Padding */
/* CLEAN ZERO-PADDING HEADER — Same compact size in hero & scrolled states */
.site-sticky-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 70px !important;
    z-index: 2147483647 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 32px 0 24px !important;
    pointer-events: auto !important;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Scrolled dark glass — SAME padding, only background changes */
.site-sticky-header.scrolled-header {
    background: rgba(8, 12, 25, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6) !important;
    /* NO padding change — stays 0 60px */
}

/* Footer hide — smooth slide up */
.site-sticky-header.header-hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.header-logo-wrap,
.header-actions-wrap {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
}

.header-actions-wrap {
    gap: 12px !important;
}

@media (max-width: 1023px) {
    .site-sticky-header {
        height: 64px !important;
        padding: 0 16px !important;
    }
    .header-logo-wrap,
    .header-actions-wrap {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

/* 2. RESTORED PREMIUM EXPERIENCE TYPOGRAPHY (Original Styles & Font Weights, Only White Text Color) */
.split-feature-section,
.split-feature-section * {
    font-family: 'Onest', sans-serif !important;
}

.split-feature-section .eyebrow {
    color: #4C6FFF !important;
    background: rgba(76, 111, 255, 0.15) !important;
    border: 1px solid rgba(76, 111, 255, 0.3) !important;
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 99px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
}

.split-feature-section .problem-title,
.split-feature-section h2 {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important; /* Restored clean unbolded weight */
    line-height: 1.25 !important;
}

.split-feature-section .problem-desc,
.split-feature-section p {
    color: #e5e7eb !important;
    font-size: 1rem !important;
    font-weight: 400 !important; /* Restored clean normal weight */
    line-height: 1.6 !important;
}

/* 3. MOBILE WORKFLOW CAROUSEL (Horizontal Scroll, Reduced Padding & Compact Depth) */
@media (max-width: 1023px) {
    .how-it-works-section {
        padding: 2.5rem 1rem !important;
        border-radius: 0 !important;
    }
    
    .hiw-header {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .hiw-steps {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding-bottom: 1rem !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .hiw-card, .hiw-card.reverse {
        flex: 0 0 88vw !important;
        width: 88vw !important;
        max-width: 88vw !important;
        scroll-snap-align: center !important;
        flex-direction: column !important;
        padding: 1.25rem !important;
        gap: 1rem !important;
        min-height: auto !important;
        border-radius: 20px !important;
    }
    
    .hiw-image-col {
        min-height: 180px !important;
        max-height: 200px !important;
        width: 100% !important;
    }
    
    .hiw-content-col, .hiw-card.reverse .hiw-content-col {
        padding: 0 !important;
        width: 100% !important;
    }

    .hiw-card-title {
        font-size: 1.35rem !important;
        margin-bottom: 0.4rem !important;
    }

    .hiw-card-subtitle {
        font-size: 0.88rem !important;
        margin-bottom: 1rem !important;
    }
}

/* ============================================================
   RESTORED BURGER ICON & ZERO-JUMP OFF-CANVAS MENU ALIGNMENT
   ============================================================ */

/* 1. Restored Circular Burger Button lines & spacing */
.burger-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important; /* Perfect 6px gap between 2 lines restored */
    cursor: pointer !important;
    padding: 0 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.burger-line {
    width: 18px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    display: block !important;
}

/* 2. Menu Overlay Smooth Butter Transition */
.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2147483647 !important;
    display: flex !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.menu-overlay.active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.menu-backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.menu-panel {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: rgba(8, 12, 25, 0.92) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    padding: 6rem 4rem 3rem 4rem !important;
    overflow-y: auto !important;
    transform: translateY(-20px) scale(0.98) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease !important;
}

.menu-overlay.active .menu-panel {
    transform: translateY(0) scale(1) !important;
}

/* 3. Menu Logo & Close Button at EXACT same position as Site Header */
.menu-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    padding: 0 32px 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    pointer-events: none !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.menu-logo,
.menu-close-btn {
    pointer-events: auto !important;
}

.menu-close-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.2s !important;
}

@media (max-width: 1023px) {
    .menu-header {
        height: 64px !important;
        padding: 0 16px !important;
    }
    .menu-panel {
        padding: 5.5rem 1.5rem 2rem 1.5rem !important;
    }
}

/* 100% FLEX VERTICAL MIDDLE CENTERING FOR HEADER & MENU */
.header-logo-wrap,
.header-actions-wrap {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
}


/* ============================================================
   SKIPER UI VERCEL LIQUID HERO LAYOUT & RIGHT CONTEXT STYLING
   ============================================================ */

.skiper-hero-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 500vh !important; /* 5-Phase Scroll Height */
    background: #000000 !important;
}

.skiper-hero-frame {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

.skiper-liquid-canvas {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
}

.skiper-liquid-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 2.5rem 3rem !important;
    pointer-events: none !important;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%) !important;
}

.skiper-hero-main-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    width: 100% !important;
    gap: 3rem !important;
    margin-bottom: 2rem !important;
    pointer-events: auto !important;
}

.skiper-hero-left-col {
    flex: 1 1 58% !important;
    max-width: 650px !important;
}

.skiper-hero-title {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem) !important;
    font-weight: 500 !important;
    line-height: 0.95 !important;
    letter-spacing: -0.04em !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
    transition: opacity 0.4s ease !important;
}

.skiper-hero-right-col {
    flex: 0 0 420px !important;
    max-width: 440px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.skiper-context-badge {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    color: rgba(255, 255, 255, 0.95) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 99px !important;
    padding: 4px 14px !important;
    margin-bottom: 0.6rem !important;
    display: inline-block !important;
    text-transform: uppercase !important;
}

.skiper-context-desc {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

.skiper-liquid-bottom-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 2rem !important;
    pointer-events: auto !important;
}

.skiper-mono-group {
    display: flex !important;
    align-items: center !important;
    gap: 2.5rem !important;
}

.skiper-mono-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    font-family: ui-monospace, SFMono-Regular, monospace !important;
}

.mono-label {
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    letter-spacing: 0.12em !important;
    font-weight: 600 !important;
}

.mono-val {
    font-size: 0.78rem !important;
    color: #ffffff !important;
    letter-spacing: 0.05em !important;
    font-weight: 600 !important;
}

.skiper-white-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    background: #ffffff !important;
    color: #000000 !important;
    font-family: ui-monospace, SFMono-Regular, monospace !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 0.75rem 1.4rem !important;
    border-radius: 0 !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.skiper-white-cta-btn:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px) !important;
}

.cta-arrow-icon {
    width: 16px !important;
    height: 16px !important;
}

@media (max-width: 1023px) {
    .skiper-liquid-overlay {
        padding: 1.5rem 1.25rem !important;
    }
    .skiper-hero-main-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        margin-bottom: 1.25rem !important;
    }
    .skiper-hero-right-col {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    .skiper-liquid-bottom-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
}


/* REMOVE PILL BADGE & ALIGN RIGHT TEXT COLUMN WITH SECURITY METADATA */


.skiper-hero-right-col {
    flex: 0 0 520px !important;
    max-width: 540px !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
}

.skiper-context-desc {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    max-width: 500px !important;
}


/* RIGHT SIDE PILL CONTAINER BADGE STYLING */
.skiper-context-badge {
    display: inline-block !important;
    font-family: ui-monospace, SFMono-Regular, monospace !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 99px !important;
    padding: 5px 16px !important;
    margin-bottom: 0.75rem !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.3 !important;
}









/* ============================================================
   STRICT HEADER GLASS CONTROL:
   - HERO SECTION: 100% TRANSPARENT (NO GLASS / NO BLUR)
   - OTHER SECTIONS: DARK BLUE GLASS (rgba(8, 12, 25, 0.88) + blur)
   ============================================================ */

.site-sticky-header:not(.scrolled-header),
.landing-header:not(.scrolled-header) {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.site-sticky-header.scrolled-header,
.landing-header.scrolled-header {
    background: rgba(8, 12, 25, 0.88) !important;
    background-color: rgba(8, 12, 25, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6) !important;
}


/* EXACT DESKTOP HEADER & LOGO ALIGNMENT (60PX MATCHING ALL SECTIONS) */
@media (min-width: 1024px) {
    .site-sticky-header,
    .site-sticky-header.scrolled-header,
    .landing-header,
    .menu-header {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
    .header-logo-wrap {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
    .header-actions-wrap {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 1023px) {
    .site-sticky-header,
    .landing-header,
    .menu-header {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* ============================================================
   HEADER LOGO & RIGHT ACTION ICONS 100% SYMMETRICAL ALIGNMENT
   ============================================================ */

.site-sticky-header,
.landing-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 72px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
}

@media (min-width: 1024px) {
    .site-sticky-header,
    .landing-header,
    .menu-header {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 1023px) {
    .site-sticky-header,
    .landing-header,
    .menu-header {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

.header-logo-wrap {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.header-logo-wrap img {
    height: 38px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
}

.header-actions-wrap {
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}


/* FINAL ABSOLUTE ZERO LEFT OFFSET FIX FOR HEADER LOGO */
.site-sticky-header,
.landing-header {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.header-logo-wrap,
#headerLogo {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    transform: none !important;
}


/* ============================================================
   USER CUSTOMIZATIONS & REFINEMENTS
   ============================================================ */

/* 1. Platform Performance Desktop Top Padding +50px */
@media (min-width: 1024px) {
    .stats-section {
        padding-top: 6.5rem !important; /* +50px additional top padding */
        margin-top: 3.5rem !important;
    }
}

/* 2. PixelGo Workflow Section Thin Clean Typography Matching Rest of Site */
.hiw-title {
    font-weight: 500 !important;
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    letter-spacing: -0.03em !important;
}

.hiw-subtitle {
    font-weight: 400 !important;
    font-size: 1.05rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.hiw-card-title {
    font-weight: 500 !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
}

.hiw-card-subtitle {
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 1.25rem !important;
}

/* 3. Live Sync Flow Vibrant Animated Pulses & Glowing Beams */
.live-sync-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.live-sync-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-family: ui-monospace, SFMono-Regular, monospace !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    color: #22c55e !important;
    letter-spacing: 0.08em !important;
}

.live-pulse-dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #22c55e !important;
    box-shadow: 0 0 10px #22c55e !important;
    animation: livePulseGlow 1.5s infinite ease-in-out !important;
}

@keyframes livePulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px #22c55e; }
    50% { transform: scale(1.4); opacity: 0.5; box-shadow: 0 0 20px #22c55e; }
}

.live-sync-speed {
    font-family: ui-monospace, monospace !important;
    font-size: 0.68rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.sync-connector.active-pulse {
    position: relative !important;
    background: rgba(76, 111, 255, 0.2) !important;
    overflow: hidden !important;
    height: 3px !important;
}

.pulse-beam {
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, #4C6FFF, #60a5fa, transparent) !important;
    box-shadow: 0 0 12px #4C6FFF !important;
    animation: beamFlow 1.8s infinite linear !important;
}

@keyframes beamFlow {
    0% { left: -100%; }
    100% { left: 200%; }
}

.sync-node.active-syncing {
    border-color: rgba(76, 111, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(76, 111, 255, 0.25) !important;
}

.receipt-row.sync-live-item {
    display: flex !important;
    animation: receiptFadeIn 0.8s ease-out !important;
}

@keyframes receiptFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   LIVE REAL-TIME SYNC ANIMATED FLOW WIDGET
   ============================================================ */
.pos-sync-vis.live-sync-animated-container {
    background: rgba(10, 15, 30, 0.95) !important;
    border: 1px solid rgba(76, 111, 255, 0.35) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(76, 111, 255, 0.2) !important;
    width: 100% !important;
}

.sync-nodes {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    margin: 1.25rem 0 !important;
    gap: 8px !important;
}

.sync-node {
    flex: 1 1 30% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 10px 6px !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 2 !important;
}

.sync-node.node-active {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.18) !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.45) !important;
    transform: translateY(-3px) scale(1.03) !important;
}

.sync-node-name {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: block !important;
}

.sync-node-sub {
    font-size: 0.64rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
    display: block !important;
    margin-top: 2px !important;
}

.sync-connector {
    flex: 0 0 32px !important;
    height: 4px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 99px !important;
    position: relative !important;
    overflow: hidden !important;
}

.sync-connector .pulse-beam {
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, #22c55e, #60a5fa, transparent) !important;
    box-shadow: 0 0 12px #22c55e !important;
    animation: liveConnectorPulse 1.4s infinite linear !important;
}

@keyframes liveConnectorPulse {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sync-receipt {
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
}

.receipt-row {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 5px 0 !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s ease !important;
}

.receipt-row.total {
    border-bottom: none !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    color: #ffffff !important;
    margin-top: 4px !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.receipt-row.highlight-add {
    background: rgba(34, 197, 94, 0.22) !important;
    color: #22c55e !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}


/* LIVE TRIPLE-THREAT BOOKING WIDGET STYLING */
.live-booking-widget-container {
    background: rgba(10, 15, 30, 0.95) !important;
    border: 1px solid rgba(76, 111, 255, 0.35) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(76, 111, 255, 0.2) !important;
    width: 100% !important;
}

.booking-widget-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.booking-widget-badge {
    font-family: ui-monospace, monospace !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #4C6FFF !important;
    letter-spacing: 0.1em !important;
}

.booking-widget-status {
    font-family: ui-monospace, monospace !important;
    font-size: 0.65rem !important;
    color: #22c55e !important;
}

.booking-mode-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(76, 111, 255, 0.25) !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    margin: 1rem 0 !important;
    transition: all 0.3s ease !important;
}

.mode-card-title-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 4px !important;
}

.mode-title-text {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.mode-rate-tag {
    font-family: ui-monospace, monospace !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #4C6FFF !important;
    background: rgba(76, 111, 255, 0.15) !important;
    padding: 2px 8px !important;
    border-radius: 99px !important;
    border: 1px solid rgba(76, 111, 255, 0.3) !important;
}

.mode-card-sub {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

.booking-type-btn {
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

.booking-type-btn:hover {
    background: rgba(76, 111, 255, 0.2) !important;
    border-color: #4C6FFF !important;
}


/* ============================================================
   HEADER DROPDOWN ICONS & PAIN CARD ICONS FIX
   ============================================================ */
.btn-text-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.header-btn-icon {
    font-size: 0.95rem !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.header-dropdown-menu .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.header-dropdown-menu .item-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    background: rgba(76, 111, 255, 0.12) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.header-dropdown-menu .item-icon i {
    font-size: 1rem !important;
    display: inline-block !important;
}

.pain-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
}

.pain-icon i {
    font-size: 1.5rem !important;
    display: inline-block !important;
}

.feat-point-icon-box {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    background: rgba(76, 111, 255, 0.1) !important;
}

.feat-point-icon-box i {
    font-size: 1.1rem !important;
    display: inline-block !important;
}


/* ============================================================
   LIGHT THEME WIDGET OVERRIDES & 100% POINTER SELECTION FIX
   ============================================================ */

/* Enable Mouse Selection & Click Interactivity */
.features-section,
.feature-item-row,
.feature-visual,
.booking-engine-vis,
.pos-sync-vis,
.vendor-vis,
.booking-types,
.booking-type-btn,
.sync-nodes,
.sync-node,
.calendar-strip,
.cal-day-cell {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.booking-type-btn {
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* 1. TRIPLE-THREAT BOOKING ENGINE (LIGHT THEME) */
.booking-engine-vis.live-booking-widget-container,
.booking-engine-vis {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.booking-widget-header {
    border-bottom: 1px solid #e2e8f0 !important;
}

.booking-widget-badge {
    color: #2563eb !important;
    font-weight: 700 !important;
}

.booking-widget-status {
    color: #16a34a !important;
    font-weight: 600 !important;
}

.booking-types {
    display: flex !important;
    gap: 8px !important;
    margin: 1rem 0 !important;
    background: #f1f5f9 !important;
    padding: 4px !important;
    border-radius: 12px !important;
}

.booking-type-btn {
    flex: 1 !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.booking-type-btn.active {
    background: #4C6FFF !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(76, 111, 255, 0.3) !important;
}

.booking-mode-card {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    margin: 1rem 0 !important;
}

.mode-title-text {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.mode-rate-tag {
    color: #2563eb !important;
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
}

.mode-card-sub {
    color: #475569 !important;
}

.calendar-strip {
    display: flex !important;
    gap: 8px !important;
    margin-top: 1rem !important;
}

.cal-day-cell {
    flex: 1 !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 8px 4px !important;
    text-align: center !important;
    color: #334155 !important;
    transition: all 0.3s ease !important;
}

.cal-d {
    font-size: 0.65rem !important;
    color: #64748b !important;
    display: block !important;
}

.cal-n {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    display: block !important;
}

.cal-label {
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    display: block !important;
    margin-top: 2px !important;
}

.cal-day-cell.booked {
    background: #dbeafe !important;
    border-color: #93c5fd !important;
    color: #1e40af !important;
}

.cal-day-cell.booked-gold {
    background: #fef3c7 !important;
    border-color: #fcd34d !important;
    color: #92400e !important;
}

.cal-day-cell.booked-mint {
    background: #dcfce7 !important;
    border-color: #86efac !important;
    color: #166534 !important;
}


/* 2. POS SYNC / LIVE SYNC FLOW (LIGHT THEME) */
.pos-sync-vis.live-sync-animated-container,
.pos-sync-vis {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.live-sync-header {
    border-bottom: 1px solid #e2e8f0 !important;
}

.live-sync-badge {
    color: #16a34a !important;
    font-weight: 700 !important;
}

.live-sync-speed {
    color: #64748b !important;
}

.sync-node {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
}

.sync-node.node-active {
    background: #f0fdf4 !important;
    border-color: #22c55e !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.25) !important;
}

.sync-node-name {
    color: #0f172a !important;
}

.sync-node-sub {
    color: #64748b !important;
}

.sync-connector {
    background: #cbd5e1 !important;
}

.sync-receipt {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}

.receipt-row {
    color: #334155 !important;
    border-bottom: 1px dashed #e2e8f0 !important;
}

.receipt-row.total {
    color: #0f172a !important;
    border-top: 1px solid #cbd5e1 !important;
}

.receipt-row.highlight-add {
    background: #dcfce7 !important;
    color: #15803d !important;
}


/* 3. MULTI-VENDOR ARCHITECTURE WIDGET (LIGHT THEME) */
.vendor-vis {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.v-layer {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
}

.vl-name {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.vl-desc {
    color: #64748b !important;
}


/* ============================================================
   PERFECT INLINE SVG & FONTALESOME RECTANGLE BOX FIX
   ============================================================ */

/* Fix FontAwesome Font-Family Override */
i.fa, i.fas, i.far, i.fal, i.fab, i.fa-solid, i.fa-brands,
.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", FontAwesome !important;
    font-style: normal !important;
    font-weight: 900 !important;
    display: inline-block !important;
}

/* Pain Cards Inline SVG Styling */
.pain-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
}

.pain-icon svg {
    display: block !important;
}

.feat-point-icon-box {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: #eff6ff !important;
    border: 1px solid #dbeafe !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.feat-point-icon-box svg {
    display: block !important;
}

.item-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    background: #eff6ff !important;
    border: 1px solid #dbeafe !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.item-icon svg {
    display: block !important;
}


/* ============================================================
   COMPREHENSIVE RESPONSIVE OVERHAUL (MOBILE, TABLET, DESKTOP, ULTRA-WIDE)
   ============================================================ */

/* ------------------------------------------------------------
   1. HERO SECTION MOBILE & TABLET RE-POSITIONING
   Ensures hero headings NEVER overlap header or touch the very top!
   ------------------------------------------------------------ */
@media (max-width: 1023px) {
    .skiper-hero-frame {
        height: 100vh !important;
        height: 100dvh !important;
    }

    .skiper-liquid-overlay {
        padding: 80px 20px 24px 20px !important; /* Top 80px padding guarantees clearance below header */
        justify-content: flex-end !important;
        background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.98) 100%) !important;
    }

    .skiper-hero-main-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;
        gap: 1rem !important;
        margin-bottom: 1.25rem !important;
        width: 100% !important;
    }

    .skiper-hero-left-col {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .skiper-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.6rem) !important;
        line-height: 1.15 !important;
        margin-top: 0 !important;
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        width: 100% !important;
    }

    .skiper-hero-right-col {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    .skiper-context-badge {
        font-size: 0.68rem !important;
        padding: 4px 12px !important;
        margin-bottom: 0.4rem !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .skiper-context-desc {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
        max-width: 100% !important;
    }

    .skiper-liquid-bottom-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .skiper-mono-group {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 1rem !important;
    }

    .skiper-white-cta-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.78rem !important;
    }
}

@media (max-width: 480px) {
    .skiper-liquid-overlay {
        padding: 76px 14px 16px 14px !important;
    }
    .skiper-hero-title {
        font-size: 1.65rem !important;
        line-height: 1.2 !important;
    }
    .header-actions-wrap {
        gap: 6px !important;
    }
    .header-dropdown-btn span {
        font-size: 0.75rem !important;
    }
}

/* ------------------------------------------------------------
   2. TABLET & IPAD BREAKPOINT (768px - 1023px)
   ------------------------------------------------------------ */
@media (min-width: 768px) and (max-width: 1023px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ------------------------------------------------------------
   3. GENERAL MOBILE SECTION BALANCING (max-width: 767px)
   ------------------------------------------------------------ */
@media (max-width: 767px) {
    /* Main Section Container Padding */
    .stats-section,
    .modules-section,
    .problem-section,
    .features-section,
    .how-it-works-section,
    .comparison-section,
    .mobile-section,
    .blog-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .stats-section {
        padding-top: 3rem !important;
    }

    .section-header-wrap,
    .comparison-header,
    .features-header,
    .hiw-header {
        margin-bottom: 2rem !important;
    }

    .stats-title,
    .modules-title,
    .problem-title,
    .features-section-title,
    .hiw-title,
    .testimonials-title,
    .mobile-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .stat-cell {
        padding: 1.25rem !important;
    }

    .problem-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .feature-item-row,
    .feature-item-row.reverse {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .feature-content,
    .feature-visual {
        width: 100% !important;
    }

    .mobile-section {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .mobile-feats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .comp-table-wrap {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .comp-table th,
    .comp-table td {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
    }
}

/* ------------------------------------------------------------
   4. ULTRA-WIDE DESKTOP CONTAINER MAX-WIDTH (min-width: 1440px)
   ------------------------------------------------------------ */
@media (min-width: 1440px) {
    .site-sticky-header,
    .landing-header {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
    .skiper-liquid-overlay {
        padding: 3rem 60px !important;
    }
}


/* ============================================================
   FIX 1: PLATFORM CAPABILITIES & POS SYNC MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 1023px) {
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .feature-item-row,
    .feature-item-row.reverse {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1.25rem !important;
        margin: 0 !important;
    }

    .feature-content,
    .feature-visual {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }

    .booking-engine-vis,
    .pos-sync-vis,
    .vendor-vis {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.25rem 1rem !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .sync-nodes {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
    }

    .sync-node {
        flex: 1 1 28% !important;
        min-width: 85px !important;
    }

    .sync-connector {
        flex: 0 0 16px !important;
    }
}

/* ============================================================
   FIX 2: SMOOTH EFFORTLESS TOUCH SCROLL FOR OFF-CANVAS MENU
   ============================================================ */
.menu-overlay {
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
}

.menu-panel {
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    overscroll-behavior: contain !important;
    scroll-behavior: smooth !important;
}

@media (max-width: 767px) {
    .menu-panel {
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        border: none !important;
        margin: 0 !important;
        padding: 1.25rem 1rem 3rem 1rem !important;
        overflow-y: scroll !important;
    }
}

/* ============================================================
   FIX 3: PIXELGO WORKFLOW SEAMLESS INFINITE CAROUSEL & PROGRESS BAR
   ============================================================ */
.hiw-carousel-viewport {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 20px !important;
}

.hiw-carousel-track {
    display: flex !important;
    width: 100% !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform !important;
}

.hiw-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.hiw-nav-bar {
    display: flex !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
    width: 100% !important;
}

.hiw-nav-item {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    width: 160px !important;
    opacity: 0.5 !important;
    transition: opacity 0.3s ease !important;
    padding: 0 !important;
}

.hiw-nav-item.active {
    opacity: 1 !important;
}

.hiw-nav-num {
    font-family: ui-monospace, monospace !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: #4C6FFF !important;
}

.hiw-nav-label {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

.hiw-progress-track {
    width: 100% !important;
    height: 3px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 99px !important;
    overflow: hidden !important;
    margin-top: 4px !important;
}

.hiw-progress-fill {
    width: 0% !important;
    height: 100% !important;
    background: #4C6FFF !important;
    border-radius: 99px !important;
}

.hiw-nav-item.active .hiw-progress-fill {
    transition: width 3s linear !important;
    width: 100% !important;
}

@media (max-width: 767px) {
    .hiw-nav-bar {
        gap: 0.75rem !important;
    }
    .hiw-nav-item {
        width: 30% !important;
    }
    .hiw-nav-label {
        display: none !important;
    }
}


/* ============================================================
   EXECUTION OF ALL 6 USER DIRECTIVES
   ============================================================ */

/* 1. REMOVE ALL GLOBAL HOVER BACKGROUND OVERLAYS */
.reveal-inview:hover,
.js-program-hover:hover,
.stat-cell:hover,
.module-row:hover,
.pain-card:hover,
.hiw-card:hover,
.blog-card:hover {
    background-image: none !important;
}

/* 2. REMOVE OUTER WRAPPER BACKGROUND FROM FEATURE VISUALS & EXPAND WIDGETS 100% */
.feature-visual {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.booking-engine-vis,
.pos-sync-vis,
.vendor-vis {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

@media (max-width: 767px) {
    .calendar-strip {
        display: flex !important;
        gap: 4px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    .cal-day-cell {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        padding: 6px 2px !important;
    }
    .cal-d { font-size: 0.6rem !important; }
    .cal-n { font-size: 0.85rem !important; }
    .cal-label { font-size: 0.52rem !important; }
}

/* 3. PLATFORM PERFORMANCE 2 COLUMNS PER ROW ON MOBILE WITH SUBTLE BORDER */
@media (max-width: 767px) {
    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .stat-cell {
        padding: 14px 10px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 14px !important;
        box-shadow: none !important;
        text-align: center !important;
    }
    .stat-val {
        font-size: 1.6rem !important;
        line-height: 1.1 !important;
    }
    .stat-lbl {
        font-size: 0.75rem !important;
        margin-top: 4px !important;
    }
    .stat-sub {
        font-size: 0.65rem !important;
        margin-top: 2px !important;
    }
}

/* 4. FOOTER WHITE FONTS & ACCORDIONS */
footer, footer a, footer p, footer span {
    color: #ffffff !important;
}
footer a:hover {
    color: #4C6FFF !important;
}

.footer-accordion summary {
    list-style: none !important;
    cursor: pointer !important;
}
.footer-accordion summary::-webkit-details-marker {
    display: none !important;
}

/* 5. MENU OVERLAY ACCORDIONS STYLING */
.menu-accordion-item {
    border-bottom: none !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.menu-accordion-summary {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    list-style: none !important;
}

.menu-accordion-summary::-webkit-details-marker {
    display: none !important;
}


/* ============================================================
   ABOUT SECTION STYLING
   ============================================================ */
.about-section {
    padding: 5rem 60px 3rem 60px !important;
    background: transparent !important;
}

.about-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.about-header {
    margin-bottom: 2.5rem !important;
}

.about-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
    font-weight: 500 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    margin-top: 0.5rem !important;
}

.about-subtitle {
    font-size: 1.05rem !important;
    color: rgba(255, 255, 255, 0.78) !important;
    max-width: 780px !important;
    line-height: 1.6 !important;
}

.about-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}

.about-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    padding: 1.5rem !important;
    transition: transform 0.3s ease !important;
}

.about-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(76, 111, 255, 0.4) !important;
}

.about-card-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
}

.about-card h3 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
}

.about-card p {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

@media (max-width: 1023px) {
    .about-section {
        padding: 3rem 16px 2rem 16px !important;
    }
    .about-grid {
        grid-template-columns: 1fr !important;
    }
}

/* COMPACT PAIN CARDS: MOVE DESCRIPTION TO START UNDER HEADING (REDUCE CARD HEIGHT) */
.pain-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 1.25rem !important;
}

.pain-body {
    width: 100% !important;
}

.pain-body h4 {
    margin-bottom: 4px !important;
}

.pain-body p {
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* PLUS (+) / MINUS (-) ACCORDION TOGGLE ICONS FOR MENU & FOOTER */
.menu-accordion-summary .acc-toggle-icon::before,
.footer-acc-header .f-acc-icon::before {
    content: "+" !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #4C6FFF !important;
}

.menu-accordion-item[open] .menu-accordion-summary .acc-toggle-icon::before,
.footer-acc-box[open] .footer-acc-header .f-acc-icon::before {
    content: "−" !important;
}

/* FOOTER ACCORDION HEADER STYLING */
.footer-acc-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    list-style: none !important;
}

.footer-acc-header::-webkit-details-marker {
    display: none !important;
}


/* ============================================================
   HEADER DROPDOWN CLICK-TOGGLE & CLICK-TO-CLOSE STYLING
   ============================================================ */

.header-dropdown-wrap {
    position: relative !important;
}

.header-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    width: 240px !important;
    background: #080c19 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 16px !important;
    padding: 8px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) scale(0.95) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s !important;
    pointer-events: none !important;
    z-index: 999999 !important;
}

.header-dropdown-wrap.active .header-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}


/* ============================================================
   HERO BUTTON MOBILE WIDTH FIX
   ============================================================ */
@media (max-width: 767px) {
    .skiper-white-cta-btn {
        width: auto !important;
        max-width: 70vw !important;
        padding: 8px 14px !important;
        font-size: 0.75rem !important;
        margin-left: auto !important;
    }
}

/* ============================================================
   3-COLOR ALTERNATING RHYTHM SYSTEM (1 -> 2 -> 3 -> 1 -> 2 -> 3)
   Color 1: Deep Navy (#080c19)
   Color 2: Warm Cream (#f8f6f0) with Crisp White Cards & Dark Text
   Color 3: Sleek Slate (#0b1120)
   ============================================================ */

/* 1. HERO SECTION -> Color 1 (Deep Navy #080c19) */
#heroScrollSection,
.hero-canvas-frame-wrap {
    background-color: #080c19 !important;
}

/* 2. ABOUT SECTION -> Color 2 (Warm Cream #f8f6f0) */
.about-section {
    background-color: #f8f6f0 !important;
    color: #0f172a !important;
}
.about-section .about-title {
    color: #0f172a !important;
}
.about-section .about-subtitle {
    color: #334155 !important;
}
.about-section .about-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
}
.about-section .about-card h3 {
    color: #0f172a !important;
}
.about-section .about-card p {
    color: #475569 !important;
}

/* 3. PLATFORM PERFORMANCE STATS -> Color 3 (Sleek Slate #0b1120) */
.stats-section {
    background-color: #0b1120 !important;
    color: #ffffff !important;
}

/* 4. THE PROBLEM WE SOLVE (PAIN CARDS) -> Color 1 (Deep Navy #080c19) */
.pain-section {
    background-color: #080c19 !important;
    color: #ffffff !important;
}
.pain-section .pain-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* 5. PLATFORM CAPABILITIES -> Color 2 (Warm Cream #f8f6f0) */
.features-section {
    background-color: #f8f6f0 !important;
    color: #0f172a !important;
}
.features-section .eyebrow {
    color: #4C6FFF !important;
}
.features-section .feature-title {
    color: #0f172a !important;
}
.features-section .feature-desc {
    color: #334155 !important;
}
.features-section .feat-point-text-box h4 {
    color: #0f172a !important;
}
.features-section .feat-point-text-box p {
    color: #475569 !important;
}

/* 6. ZERO REVENUE LEAKAGE (POS SYNC) -> Color 3 (Sleek Slate #0b1120) */
.pos-sync-section {
    background-color: #0b1120 !important;
    color: #ffffff !important;
}

/* 7. MULTI-VENDOR ARCHITECTURE -> Color 1 (Deep Navy #080c19) */
.vendor-section {
    background-color: #080c19 !important;
    color: #ffffff !important;
}

/* 8. PIXELGO WORKFLOW CAROUSEL -> Color 2 (Warm Cream #f8f6f0) */
.how-it-works-section {
    background-color: #f8f6f0 !important;
    color: #0f172a !important;
}
.how-it-works-section .hiw-eyebrow {
    color: #4C6FFF !important;
}
.how-it-works-section .hiw-title {
    color: #0f172a !important;
}
.how-it-works-section .hiw-subtitle {
    color: #334155 !important;
}
.how-it-works-section .hiw-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04) !important;
}
.how-it-works-section .hiw-card-title {
    color: #0f172a !important;
}
.how-it-works-section .hiw-card-subtitle {
    color: #475569 !important;
}
.how-it-works-section .hiw-feature span {
    color: #0f172a !important;
}
.how-it-works-section .hiw-nav-label {
    color: #0f172a !important;
}

/* 9. CASE STUDIES / PLAYBOOKS -> Color 3 (Sleek Slate #0b1120) */
.blog-section {
    background-color: #0b1120 !important;
    color: #ffffff !important;
}

/* 10. FOOTER -> Color 1 (Deep Navy #080c19) */
footer#contact {
    background-color: #080c19 !important;
}


/* ============================================================
   ABOUT & PAIN CARDS TOP-ROW FLEX LAYOUT (TITLE NEXT TO ICON)
   ============================================================ */
.about-card-top-row,
.pain-card-top-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.about-card-icon,
.pain-card-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.about-card-icon {
    background: rgba(76, 111, 255, 0.12) !important;
    border: 1px solid rgba(76, 111, 255, 0.25) !important;
}

.pain-card-icon {
    background: rgba(239, 68, 68, 0.12) !important;
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
}

.about-card h3,
.pain-card h4 {
    margin: 0 !important;
    font-size: 1.18rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.about-card p,
.pain-card p {
    margin: 0 !important;
    padding-top: 4px !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    width: 100% !important;
}

.about-card,
.pain-card {
    padding: 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* ============================================================
   IPHONE 16 PRO TITANIUM SHOWCASE FRAME
   ============================================================ */
.mobile-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.mobile-feats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
    margin-top: 2rem !important;
}

.mobile-feat-box {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 1rem !important;
}

.m-feat-icon-wrap {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.mobile-feat-name {
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #ffffff !important;
    display: block !important;
}

.mobile-feat-desc {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 2px !important;
    line-height: 1.4 !important;
}

.iphone16-mockup-wrapper {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
}

.iphone16-glow-aura {
    position: absolute !important;
    inset: -20px !important;
    background: radial-gradient(circle, rgba(76,111,255,0.25) 0%, rgba(0,0,0,0) 70%) !important;
    filter: blur(40px) !important;
    z-index: 0 !important;
}

.iphone16-frame {
    position: relative !important;
    z-index: 1 !important;
    width: 310px !important;
    height: 620px !important;
    background: #000000 !important;
    border-radius: 48px !important;
    border: 8px solid #2b2c30 !important;
    outline: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), inset 0 0 2px rgba(255, 255, 255, 0.4) !important;
    padding: 12px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.iphone16-dynamic-island {
    position: absolute !important;
    top: 18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90px !important;
    height: 24px !important;
    background: #000000 !important;
    border-radius: 20px !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 10px !important;
}

.di-camera {
    width: 10px !important;
    height: 10px !important;
    background: #111425 !important;
    border-radius: 50% !important;
}

.di-sensor {
    width: 8px !important;
    height: 8px !important;
    background: #090c1a !important;
    border-radius: 50% !important;
}

.iphone16-screen {
    width: 100% !important;
    height: 100% !important;
    background: #080c19 !important;
    border-radius: 38px !important;
    padding: 40px 14px 14px 14px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.ip-screen-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.ip-brand-name {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.ip-status-badge {
    font-size: 0.62rem !important;
    color: #22c55e !important;
    font-weight: 600 !important;
}

.ip-avatar-chip {
    font-size: 0.65rem !important;
    background: rgba(76,111,255,0.2) !important;
    color: #4C6FFF !important;
    padding: 3px 8px !important;
    border-radius: 99px !important;
    font-weight: 600 !important;
}

.ip-stat-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
}

.ip-mini-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 10px 8px !important;
    display: flex !important;
    flex-direction: column !important;
}

.ip-mini-card.highlight {
    background: rgba(76, 111, 255, 0.15) !important;
    border-color: rgba(76, 111, 255, 0.3) !important;
}

.ip-mc-title {
    font-size: 0.62rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase !important;
}

.ip-mc-val {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 2px 0 !important;
}

.ip-mc-sub {
    font-size: 0.6rem !important;
    color: #4C6FFF !important;
}

.ip-feed-box {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    flex: 1 !important;
}

.ip-feed-head {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,0.7) !important;
    text-transform: uppercase !important;
}

.ip-feed-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(0,0,0,0.2) !important;
    padding: 6px 8px !important;
    border-radius: 8px !important;
}

.ip-feed-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
}

.ip-feed-dot.green { background: #22c55e !important; }
.ip-feed-dot.blue { background: #3b82f6 !important; }

.ip-feed-title {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.ip-feed-sub {
    font-size: 0.62rem !important;
    color: rgba(255,255,255,0.6) !important;
}

.ip-feed-time {
    font-size: 0.58rem !important;
    color: rgba(255,255,255,0.4) !important;
    margin-left: auto !important;
}

.ip-action-btn {
    background: #4C6FFF !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 10px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-align: center !important;
    width: 100% !important;
}

@media (max-width: 1023px) {
    .mobile-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .mobile-feats-grid {
        grid-template-columns: 1fr !important;
    }
}


/* ============================================================
   ABOUT & PAIN CARD VERTICAL CENTERING & MINIMAL GAPS
   ============================================================ */
.about-card-top-row,
.pain-card-top-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 4px !important;
}

.about-card-icon,
.pain-card-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.about-card h3,
.pain-card h4 {
    margin: 0 !important;
    font-size: 1.12rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.about-card p,
.pain-card p {
    margin-top: 4px !important;
    padding-top: 0 !important;
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
}

.about-card,
.pain-card {
    padding: 1.1rem !important;
}

/* ============================================================
   INSIGHTS & ENGINEERING (BLOG SECTION) CONTRAST FIX
   ============================================================ */
.blog-section {
    background-color: #0b1120 !important;
    color: #ffffff !important;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
}

.blog-card:hover {
    border-color: rgba(76, 111, 255, 0.4) !important;
}

.blog-card h3,
.blog-card-title,
.blog-title {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
}

.blog-card p,
.blog-card-desc,
.blog-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.88rem !important;
}

.blog-tag,
.blog-meta {
    color: #4C6FFF !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
}

/* ============================================================
   1. MOBILE MENU ACCORDION HEADERS: VERTICAL MIDDLE ALIGNMENT
   ============================================================ */
.menu-accordion-summary {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    vertical-align: middle !important;
    width: 100% !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
}

.menu-col-title {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.menu-accordion-summary .acc-toggle-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    line-height: 1 !important;
    height: 24px !important;
    width: 24px !important;
    vertical-align: middle !important;
}

/* ============================================================
   2. PAIN CARDS HEADER: TITLE SIDE-BY-SIDE WITH ICON
   ============================================================ */
.pain-card-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 6px !important;
    width: 100% !important;
}

.pain-card-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(239, 68, 68, 0.12) !important;
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.pain-title {
    margin: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.pain-desc {
    margin: 0 !important;
    padding-top: 2px !important;
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

/* ============================================================
   3. TRIPLE-THREAT CALENDAR CELL FONT COLOR TO DARK (#0f172a)
   ============================================================ */
.calendar-strip .cal-day-cell {
    color: #0f172a !important;
}

.calendar-strip .cal-d,
.calendar-strip .cal-n,
.calendar-strip .cal-label {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.cal-day-cell.booked .cal-d,
.cal-day-cell.booked .cal-n,
.cal-day-cell.booked .cal-label,
.cal-day-cell.booked-gold .cal-d,
.cal-day-cell.booked-gold .cal-n,
.cal-day-cell.booked-gold .cal-label,
.cal-day-cell.booked-mint .cal-d,
.cal-day-cell.booked-mint .cal-n,
.cal-day-cell.booked-mint .cal-label {
    color: #0f172a !important;
}

/* ============================================================
   4. FOOTER ACCORDIONS CLICKABLE
   ============================================================ */
.footer-acc-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    list-style: none !important;
}
.footer-acc-header::-webkit-details-marker {
    display: none !important;
}


/* ============================================================
   1. PAIN CARDS HEADER: FORCE SIDE-BY-SIDE ON ALL SCREENS (MOBILE INCLUDED)
   ============================================================ */
.pain-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.1rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
}

.pain-card-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 6px !important;
    width: 100% !important;
}

.pain-card-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: rgba(239, 68, 68, 0.12) !important;
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.pain-title {
    margin: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.pain-desc {
    margin: 0 !important;
    padding-top: 2px !important;
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

@media (max-width: 767px) {
    .pain-card-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .pain-title {
        font-size: 1.05rem !important;
    }
}

/* ============================================================
   2. MOBILE MENU ACCORDION HEADERS: EXACT VERTICAL MIDDLE ALIGNMENT
   ============================================================ */
.menu-accordion-summary {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    vertical-align: middle !important;
    width: 100% !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    list-style: none !important;
}

.menu-accordion-summary::-webkit-details-marker {
    display: none !important;
}

.menu-col-title {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.menu-accordion-summary .acc-toggle-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #4C6FFF !important;
    vertical-align: middle !important;
    line-height: 1 !important;
}

.menu-accordion-summary .acc-toggle-icon::before {
    content: "+" !important;
}

.menu-accordion-item[open] .menu-accordion-summary .acc-toggle-icon::before {
    content: "−" !important;
}

/* ============================================================
   3. CODEAIR BRANDING & SOCIAL ICONS AT VERY BOTTOM OF MOBILE MENU
   ============================================================ */
.codeair-menu-footer {
    margin-top: 3rem !important;
    padding-top: 1.5rem !important;
    border-top: none !important;
    text-align: center !important;
    width: 100% !important;
}

.codeair-social-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 0.75rem !important;
}

.codeair-social-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    transition: background 0.2s, transform 0.2s !important;
}

.codeair-social-btn:hover {
    background: #4C6FFF !important;
    transform: translateY(-2px) !important;
}

.codeair-brand-text {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* ============================================================
   4. CLEAN FOOTER ACCORDIONS (SINGLE TOGGLE ICON, NO DUPLICATES)
   ============================================================ */
.footer-acc-summary {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    list-style: none !important;
}

.footer-acc-summary::-webkit-details-marker {
    display: none !important;
}

/* ============================================================
   FINAL NUCLEAR OVERRIDE: PAIN CARD ICON + TITLE SIDE-BY-SIDE
   ============================================================ */
.pain-card-top-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 6px !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

.pain-card-top-row .pain-icon {
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pain-card-top-row h4 {
    margin: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: inherit !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.pain-card > p {
    margin: 0 !important;
    padding-top: 2px !important;
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
}

@media (max-width: 767px) {
    .pain-card-top-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .pain-card-top-row h4 {
        font-size: 1rem !important;
    }
}


/* ============================================================
   HEADER DROPDOWN: .active CLASS SUPPORT (CLICK-TO-TOGGLE)
   ============================================================ */
.header-dropdown-wrap.active .header-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

/* ============================================================
   MOBILE MENU ACCORDION: VERTICAL CENTER +/- ICON WITH TITLE TEXT
   ============================================================ */
.menu-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-accordion-item:last-child {
    border-bottom: none;
}

.menu-accordion-summary {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 14px 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    list-style: none !important;
}

.menu-accordion-summary::-webkit-details-marker {
    display: none !important;
}

.menu-accordion-summary .menu-col-title {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.menu-accordion-summary .acc-toggle-icon {
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    color: #4C6FFF !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
}

.menu-accordion-summary .acc-toggle-icon::before {
    content: "+" !important;
    line-height: 1 !important;
}

.menu-accordion-item[open] > .menu-accordion-summary .acc-toggle-icon::before {
    content: "−" !important;
}

/* Remove extra border above CodeAir branding */
.codeair-menu-footer {
    margin-top: auto !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    border-top: none !important;
    text-align: center !important;
    width: 100% !important;
}


/* ============================================================
   MOBILE MENU: CLEAN PROFESSIONAL ACCORDION (NO BORDER LINES)
   ============================================================ */
.menu-accordion-item {
    border-bottom: none !important;
    border: none !important;
}

.menu-accordion-summary {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 14px 16px !important;
    margin: 4px 0 !important;
    cursor: pointer !important;
    list-style: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    transition: background 0.2s ease !important;
}

.menu-accordion-summary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.menu-accordion-summary::-webkit-details-marker {
    display: none !important;
}

.menu-accordion-summary .menu-col-title {
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.menu-accordion-summary .acc-toggle-icon {
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
}

.menu-accordion-summary .acc-toggle-icon::before {
    content: "+" !important;
    line-height: 1 !important;
}

.menu-accordion-item[open] > .menu-accordion-summary {
    background: rgba(76, 111, 255, 0.1) !important;
}

.menu-accordion-item[open] > .menu-accordion-summary .acc-toggle-icon::before {
    content: "−" !important;
}

.menu-links-list {
    padding: 8px 8px 4px 8px !important;
}

.menu-link-item {
    padding: 10px 14px !important;
    border-radius: 10px !important;
    margin-bottom: 2px !important;
}

/* CodeAir branding at absolute bottom */
.menu-panel {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
}

.menu-columns-grid {
    flex: 1 !important;
    padding: 0 8px !important;
}

.codeair-menu-footer {
    margin-top: auto !important;
    padding: 20px 16px 24px 16px !important;
    border-top: none !important;
    text-align: center !important;
    width: 100% !important;
}

.codeair-social-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
}

.codeair-social-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: background 0.2s, color 0.2s !important;
}

.codeair-social-btn:hover {
    background: rgba(76, 111, 255, 0.2) !important;
    color: #ffffff !important;
}

.codeair-brand-text {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.78rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
    letter-spacing: 0.02em !important;
}

/* ============================================================
   FOOTER: REMOVE HOVER FLASH ON MENU ITEMS
   ============================================================ */
.footer-nav-title,
.footer-nav-title:hover,
.footer-nav-title:active,
.footer-nav-title:focus {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

.footer-nav-list a,
.footer-nav-list a:hover,
.footer-nav-list a:active,
.footer-nav-list a:focus,
.footer-nav-list li,
.footer-nav-list li:hover,
.footer-nav-list li:active {
    -webkit-tap-highlight-color: transparent !important;
    background: transparent !important;
    outline: none !important;
}

/* ============================================================
   INSIGHTS & ENGINEERING BLOG SECTION: LIGHT BACKGROUND + CREAM CARDS + DARK TEXT
   ============================================================ */
.blog-section {
    background-color: #f8f6f0 !important;
    color: #0f172a !important;
}

.blog-section .eyebrow,
.blog-section .eyebrow.tone-dark {
    color: #4C6FFF !important;
}

.blog-section h2,
.blog-section .features-section-title {
    color: #0f172a !important;
}

.blog-section p {
    color: #334155 !important;
}

.blog-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
}

.blog-card:hover {
    border-color: #4C6FFF !important;
    box-shadow: 0 8px 24px rgba(76, 111, 255, 0.12) !important;
}

.blog-card h3,
.blog-card-title,
.blog-title {
    color: #0f172a !important;
    font-weight: 600 !important;
}

.blog-card p,
.blog-card-desc,
.blog-desc {
    color: #475569 !important;
}

.blog-tag,
.blog-meta {
    color: #4C6FFF !important;
    font-weight: 700 !important;
}

.blog-card img {
    border-radius: 0 !important;
}

/* ============================================================
   REDESIGNED ABOUT SECTION: 2-COLUMN LAYOUT + BORDER RADIUS
   ============================================================ */
.about-section {
    border-radius: var(--radius-card-lg, 2rem) !important;
    overflow: hidden !important;
    padding: 4rem 1.5rem !important;
}

@media (min-width: 768px) {
    .about-section {
        padding: 5rem 3.5rem !important;
    }
}

/* Two-Column Layout: Story left + Cards right */
.about-two-col {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    margin-top: 1rem !important;
}

@media (min-width: 768px) {
    .about-two-col {
        grid-template-columns: 1.1fr 1fr !important;
        gap: 3rem !important;
        align-items: start !important;
    }
}

/* Left Column: Story Paragraph */
.about-story {
    padding: 0 !important;
}

.about-story-lead {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 1.25rem !important;
    font-weight: 400 !important;
}

.about-story-lead strong {
    color: #4C6FFF !important;
    font-weight: 700 !important;
}

.about-story-body {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 1rem !important;
}

.about-story-body strong {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600 !important;
}

/* Highlight Stats Strip */
.about-highlight-strip {
    display: flex !important;
    gap: 0 !important;
    margin-top: 1.75rem !important;
    padding: 1.25rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.about-highlight-item {
    flex: 1 !important;
    text-align: center !important;
    padding: 0 0.5rem !important;
}

.about-highlight-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.about-highlight-num {
    display: block !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #4C6FFF !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
}

.about-highlight-label {
    display: block !important;
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-weight: 500 !important;
}

/* Right Column: Bigger Cards with Depth */
.about-cards-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.about-card.about-card-big {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 1.5rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.about-card.about-card-big:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(76, 111, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(76, 111, 255, 0.25) !important;
}

.about-card-big .about-card-top-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
}

.about-card-big .about-card-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 14px !important;
    background: rgba(76, 111, 255, 0.1) !important;
    border: 1px solid rgba(76, 111, 255, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.about-card-big h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.about-card-big p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    margin: 0 !important;
}

@media (max-width: 767px) {
    .about-highlight-num {
        font-size: 1.4rem !important;
    }
    .about-card-big {
        padding: 1.25rem !important;
    }
    .about-card-big h3 {
        font-size: 1.05rem !important;
    }
}


/* ============================================================
   FIX: ABOUT SECTION TEXT DARK (ON CREAM BACKGROUND)
   ============================================================ */
.about-section .about-title {
    color: #0f172a !important;
}

.about-story-lead {
    color: #1e293b !important;
}

.about-story-lead strong {
    color: #4C6FFF !important;
}

.about-story-body {
    color: #475569 !important;
}

.about-story-body strong {
    color: #1e293b !important;
}

.about-highlight-num {
    color: #4C6FFF !important;
}

.about-highlight-label {
    color: #64748b !important;
}

.about-highlight-strip {
    border-top-color: rgba(0, 0, 0, 0.1) !important;
    border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

.about-highlight-item:not(:last-child) {
    border-right-color: rgba(0, 0, 0, 0.1) !important;
}

.about-card.about-card-big {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

.about-card.about-card-big:hover {
    box-shadow: 0 8px 30px rgba(76, 111, 255, 0.12) !important;
    border-color: rgba(76, 111, 255, 0.25) !important;
}

.about-card-big h3 {
    color: #0f172a !important;
}

.about-card-big p {
    color: #64748b !important;
}

.about-section .eyebrow.tone-dark {
    color: #4C6FFF !important;
}

/* ============================================================
   FIX: DESKTOP MENU - SHOW ALL ITEMS EXPANDED (NO ACCORDION)
   On desktop (≥768px), force all <details> open, hide toggle icons,
   and display as original multi-column grid layout.
   Mobile (<768px) keeps accordion behavior unchanged.
   ============================================================ */
@media (min-width: 768px) {
    .menu-columns-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        gap: 2rem !important;
    }

    .menu-accordion-item {
        border: none !important;
        background: none !important;
    }

    .menu-accordion-item[open] > .menu-accordion-summary,
    .menu-accordion-summary {
        background: transparent !important;
        padding: 0 0 0.75rem 0 !important;
        margin: 0 !important;
        cursor: default !important;
        pointer-events: none !important;
        border-radius: 0 !important;
    }

    .menu-accordion-summary .acc-toggle-icon {
        display: none !important;
    }

    .menu-accordion-item .menu-links-list {
        padding: 0 !important;
    }

    .menu-link-item {
        background: transparent !important;
        border-radius: 8px !important;
        padding: 8px 0 !important;
        margin: 0 !important;
    }

    /* Force all details open on desktop */
    .menu-accordion-item {
        /* HTML attribute 'open' is needed — we add via JS */
    }

    .codeair-menu-footer {
        display: none !important;
    }
}

/* ============================================================
   FIX: FLUTTER STAFF OPERATIONS SECTION - MATCHING SECTION MARGINS (1.5rem mobile, 3.5rem desktop)
   ============================================================ */
.mobile-section {
    display: block !important;
    width: auto !important;
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
    background: var(--brand-deep, #080c19) !important;
    border-radius: var(--radius-card-lg, 2rem) !important;
    padding: 4rem 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

@media (min-width: 1024px) {
    .mobile-section {
        margin-left: 3.5rem !important;
        margin-right: 3.5rem !important;
        padding: 5rem 3.5rem !important;
    }
}

.mobile-container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

@media (min-width: 1024px) {
    .mobile-container {
        grid-template-columns: 1.15fr 0.85fr !important;
        gap: 3rem !important;
    }
}

.mobile-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-right {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-feats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 640px) {
    .mobile-feats-grid {
        grid-template-columns: 1fr !important;
    }
}

.mobile-feat-box {
    display: flex !important;
    gap: 14px !important;
    align-items: flex-start !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 1.25rem !important;
    box-sizing: border-box !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
}

.mobile-feat-box:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(76, 111, 255, 0.3) !important;
}

/* ============================================================
   COMPREHENSIVE TABLET RESPONSIVENESS BREAKPOINT (768px - 1023px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 15px !important;
    }

    /* Section side margins & padding for tablets */
    .hero-section,
    .about-section,
    .stats-section,
    .pain-section,
    .problem-section,
    .features-section,
    .pos-sync-section,
    .vendor-section,
    .how-it-works-section,
    .mobile-section,
    .comparison-section,
    .testimonials-section,
    .blog-section {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
        padding: 4rem 2rem !important;
        width: auto !important;
        border-radius: 1.75rem !important;
        box-sizing: border-box !important;
    }

    /* Containers */
    .about-container,
    .stats-container,
    .features-container,
    .mobile-container,
    .comparison-container,
    .blog-container,
    .hiw-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* About Section on Tablet: Story top, 3 Cards row bottom */
    .about-two-col {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-cards-col {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }

    /* Stats Section on Tablet: 2x2 grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    /* Pain Section on Tablet */
    .problem-section {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .pain-cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }

    /* Modules Section on Tablet: 2x2 grid */
    .modules-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    /* Flutter Staff Operations Section on Tablet: Side-by-side 2 column */
    .mobile-container {
        grid-template-columns: 1.1fr 0.9fr !important;
        gap: 2rem !important;
        align-items: center !important;
    }

    .mobile-feats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    .iphone16-frame {
        width: 270px !important;
        height: 540px !important;
        border-radius: 38px !important;
        border-width: 6px !important;
    }

    /* Testimonials & Blog on Tablet: 2 columns */
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    /* Footer on Tablet: 2 columns x 2 rows */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}



/* ============================================================
   FIX: FOOTER BOTTOM - DISCLAIMER TEXT INLINE WITH SSL BADGES
   ============================================================ */
.footer-bottom-badges-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    align-items: center !important;
    margin-top: 1rem !important;
}

.footer-bottom-badges-row .footer-badges {
    display: flex !important;
    gap: 1rem !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.footer-bottom-badges-row .footer-disclaimer {
    flex: 1 !important;
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}


/* ============================================================
   GLOBAL DESIGN SYSTEM UNIFICATION FOR ALL MARKETING, SOLUTIONS & LEGAL PAGES
   ============================================================ */

/* Map legacy variables to PixelGo Landing Page Design Tokens */
:root, [data-theme="dark"], [data-theme="light"], body {
    --gold: #4C6FFF !important;
    --gold-light: #708EFF !important;
    --gold-dim: rgba(76, 111, 255, 0.15) !important;
    --gold-bright: #4C6FFF !important;
    --brand: #4C6FFF !important;
    --brand-light: #708EFF !important;
    --brand-deep: #080c19 !important;
    --font-display: 'Onest', system-ui, -apple-system, sans-serif !important;
    --font-body: 'Onest', system-ui, -apple-system, sans-serif !important;
    --border-color: rgba(255, 255, 255, 0.08) !important;
    --border: rgba(255, 255, 255, 0.08) !important;
    --bg-surface: #080c19 !important;
    --card-bg: rgba(255, 255, 255, 0.04) !important;
    --text-primary: #ffffff !important;
    --text-secondary: rgba(255, 255, 255, 0.7) !important;
    --text-muted: rgba(255, 255, 255, 0.45) !important;
}

/* Force Onest font on all marketing & legal headings/titles */
h1, h2, h3, h4, h5, h6,
.about-title, .c-hero-title, .sol-hero-title, .legal-title, .page-title,
.about-eyebrow, .c-badge, .sol-badge, .legal-eyebrow {
    font-family: 'Onest', system-ui, sans-serif !important;
}

/* Global Hero Styling for Sub-Pages */
.about-hero, .contact-hero, .sol-hero, .legal-hero, .page-hero {
    background: radial-gradient(circle at 50% 20%, rgba(76, 111, 255, 0.18), transparent 70%), #080c19 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--radius-card-lg, 2rem) !important;
    margin: 100px 3.5rem 3rem 3.5rem !important;
    padding: 4.5rem 2.5rem !important;
    box-sizing: border-box !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    position: relative !important;
}

@media (max-width: 1023px) {
    .about-hero, .contact-hero, .sol-hero, .legal-hero, .page-hero {
        margin: 85px 1.5rem 2rem 1.5rem !important;
        padding: 3.5rem 1.5rem !important;
        border-radius: 1.5rem !important;
    }
}

/* Sub-page Eyebrows / Badges */
.about-eyebrow, .c-badge, .sol-badge, .legal-eyebrow, .page-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 18px !important;
    background: rgba(76, 111, 255, 0.1) !important;
    border: 1px solid rgba(76, 111, 255, 0.3) !important;
    color: #4C6FFF !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    margin-bottom: 1.5rem !important;
}

/* Sub-page Hero Titles */
.about-title, .c-hero-title, .sol-hero-title, .legal-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
}

.about-title span, .c-hero-title span, .sol-hero-title span, .legal-title span, .gradient-text {
    background: linear-gradient(135deg, #4C6FFF 0%, #708EFF 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #4C6FFF !important;
}

/* Sub-page Subtitles */
.about-sub, .c-hero-sub, .sol-hero-subtitle, .legal-sub {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Glassmorphism Cards across Sub-pages */
.c-channel-card, .c-info-box, .about-card, .sol-card, .legal-card, .policy-card, .card-glass {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.c-channel-card:hover, .about-card:hover, .sol-card:hover, .card-glass:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(76, 111, 255, 0.35) !important;
    box-shadow: 0 15px 40px rgba(76, 111, 255, 0.12) !important;
}

/* Icon boxes across sub-pages */
.c-icon-box, .about-icon-box, .sol-icon-box {
    background: rgba(76, 111, 255, 0.1) !important;
    border: 1px solid rgba(76, 111, 255, 0.25) !important;
    color: #4C6FFF !important;
    border-radius: 14px !important;
}

/* Contact Page Specific Fixes */
.c-main-section {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
    width: auto !important;
}
@media (max-width: 1023px) {
    .c-main-section {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
}

.c-input, .c-textarea, .c-select {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-family: 'Onest', sans-serif !important;
}
.c-input:focus, .c-textarea:focus, .c-select:focus {
    border-color: #4C6FFF !important;
    box-shadow: 0 0 15px rgba(76, 111, 255, 0.2) !important;
    outline: none !important;
}

.btn-sol-primary, .btn-contact-submit, .btn-primary-pill {
    background: #4C6FFF !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    font-family: 'Onest', sans-serif !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(76, 111, 255, 0.3) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.btn-sol-primary:hover, .btn-contact-submit:hover, .btn-primary-pill:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(76, 111, 255, 0.45) !important;
}

/* Legal / Policy Page Document Card Reader */
.policy-section, .legal-wrap {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
    width: auto !important;
}
@media (max-width: 1023px) {
    .policy-section, .legal-wrap {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }
}

.policy-card-body, .legal-content-card {
    background: #f8f6f0 !important;
    color: #0f172a !important;
    border-radius: var(--radius-card-lg, 2rem) !important;
    padding: 3.5rem 3rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}
@media (max-width: 767px) {
    .policy-card-body, .legal-content-card {
        padding: 2rem 1.5rem !important;
    }
}

.policy-card-body h2, .policy-card-body h3, .legal-content-card h2, .legal-content-card h3 {
    color: #0f172a !important;
    border-left: 4px solid #4C6FFF !important;
    padding-left: 14px !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

.policy-card-body p, .policy-card-body li, .legal-content-card p, .legal-content-card li {
    color: #334155 !important;
    line-height: 1.75 !important;
    font-size: 1rem !important;
}


/* ============================================================
   HIGH-END UNIFIED SUB-PAGE DESIGN SYSTEM (LANDING PAGE PARITY)
   ============================================================ */

/* General Subpage Body & Typography Reset */
body {
    background-color: #f8f6f0 !important;
    color: #0f172a !important;
    font-family: 'Onest', system-ui, -apple-system, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Master Hero Card Container across all subpages */
.subpage-hero {
    background: radial-gradient(circle at 50% 20%, rgba(76, 111, 255, 0.22), transparent 70%), #080c19 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--radius-card-lg, 2rem) !important;
    margin: 100px 3.5rem 3rem 3.5rem !important;
    padding: 4.5rem 3rem !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35) !important;
    position: relative !important;
    text-align: center !important;
    overflow: hidden !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .subpage-hero {
        margin: 85px 2rem 2rem 2rem !important;
        padding: 3.5rem 2rem !important;
        border-radius: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .subpage-hero {
        margin: 80px 1rem 1.5rem 1rem !important;
        padding: 2.5rem 1.25rem !important;
        border-radius: 1.25rem !important;
    }
}

/* Subpage Hero Elements */
.subpage-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 18px !important;
    background: rgba(76, 111, 255, 0.12) !important;
    border: 1px solid rgba(76, 111, 255, 0.3) !important;
    color: #4C6FFF !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    margin-bottom: 1.5rem !important;
}
.subpage-eyebrow::before {
    content: '' !important;
    width: 6px !important;
    height: 6px !important;
    background: #4C6FFF !important;
    border-radius: 50% !important;
}

.subpage-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    margin-bottom: 1.25rem !important;
    font-family: 'Onest', sans-serif !important;
}
.subpage-title span {
    background: linear-gradient(135deg, #4C6FFF 0%, #708EFF 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #4C6FFF !important;
}

.subpage-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 760px !important;
    margin: 0 auto 2rem auto !important;
}

/* Master Content Section Cards */
.subpage-card-section {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: var(--radius-card-lg, 2rem) !important;
    margin: 0 3.5rem 3.5rem 3.5rem !important;
    padding: 4rem 3.5rem !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04) !important;
    position: relative !important;
}

.subpage-card-section.dark-mode {
    background: #080c19 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .subpage-card-section {
        margin: 0 2rem 2.5rem 2rem !important;
        padding: 3rem 2rem !important;
        border-radius: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .subpage-card-section {
        margin: 0 1rem 2rem 1rem !important;
        padding: 2rem 1.25rem !important;
        border-radius: 1.25rem !important;
    }
}

/* Section Headings */
.subpage-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    letter-spacing: -0.01em !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
}
.subpage-card-section.dark-mode .subpage-heading {
    color: #ffffff !important;
}

/* Feature & Grid Cards */
.subpage-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
}

.subpage-feature-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 1.25rem !important;
    padding: 2rem 1.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.subpage-card-section.dark-mode .subpage-feature-card,
.subpage-feature-card.dark-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.subpage-feature-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(76, 111, 255, 0.35) !important;
    box-shadow: 0 16px 40px rgba(76, 111, 255, 0.12) !important;
}

.subpage-icon-box {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    background: rgba(76, 111, 255, 0.1) !important;
    border: 1px solid rgba(76, 111, 255, 0.25) !important;
    color: #4C6FFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    margin-bottom: 1.25rem !important;
}

.subpage-card-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-bottom: 0.75rem !important;
}
.subpage-card-section.dark-mode .subpage-card-title,
.subpage-feature-card.dark-card .subpage-card-title {
    color: #ffffff !important;
}

.subpage-card-desc {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: #475569 !important;
}
.subpage-card-section.dark-mode .subpage-card-desc,
.subpage-feature-card.dark-card .subpage-card-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Document Reader Card (Legal / Policy / Cookie / DPDP) */
.subpage-doc-card {
    background: #ffffff !important;
    color: #0f172a !important;
    border-radius: var(--radius-card-lg, 2rem) !important;
    margin: 0 3.5rem 3.5rem 3.5rem !important;
    padding: 4rem 3.5rem !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .subpage-doc-card {
        margin: 0 2rem 2.5rem 2rem !important;
        padding: 3rem 2rem !important;
        border-radius: 1.5rem !important;
    }
}
@media (max-width: 767px) {
    .subpage-doc-card {
        margin: 0 1rem 2rem 1rem !important;
        padding: 2rem 1.25rem !important;
        border-radius: 1.25rem !important;
    }
}

.subpage-doc-card h2, .subpage-doc-card h3 {
    color: #0f172a !important;
    font-weight: 600 !important;
    border-left: 4px solid #4C6FFF !important;
    padding-left: 14px !important;
    margin-top: 2.25rem !important;
    margin-bottom: 1rem !important;
}
.subpage-doc-card p, .subpage-doc-card li {
    color: #334155 !important;
    line-height: 1.8 !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
}

/* Primary Action Buttons */
.subpage-btn-primary {
    background: #4C6FFF !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 10px 28px !important;
    font-weight: 600 !important;
    font-family: 'Onest', sans-serif !important;
    font-size: 0.95rem !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(76, 111, 255, 0.35) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.subpage-btn-text-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.subpage-btn-text-col .btn-main-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: block !important;
}

.subpage-btn-text-col .btn-subtext,
.btn-subtext {
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    display: block !important;
    margin-top: 1px !important;
    text-transform: none !important;
}

.subpage-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 32px rgba(76, 111, 255, 0.5) !important;
    color: #ffffff !important;
}

.subpage-btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-family: 'Onest', sans-serif !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: background 0.25s ease, border-color 0.25s ease !important;
}
.subpage-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
}

/* ============================================================
   SUBPAGES DEFAULT DARK GLASS HEADER & TESTIMONIALS VISIBILITY
   ============================================================ */

/* 1. Default Dark Glass Header on All Subpages */
body.subpage-body .site-sticky-header,
.subpage-body .site-sticky-header {
    background: rgba(8, 12, 25, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6) !important;
}

/* 2. Guaranteed Testimonials Cards Visibility on Subpages */
.subpage-body .testimonials-grid,
.subpage-body .testimonials-grid li,
.subpage-body .testimonial-card,
.subpage-card-section .reveal-inview,
.testimonials-section .reveal-inview,
.testimonials-grid .reveal-inview {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* ============================================================
   MASTER UNIFIED SECTION FRAMING & MARGINS (INCLUDING MARQUEE)
   ============================================================ */
.about-section,
.stats-section,
.modules-section,
.problem-section,
.features-section,
.comparison-section,
.mobile-section,
.testimonials-section,
.how-it-works-section,
.blog-section,
footer {
    margin: 0 2.5rem 2.5rem 2.5rem !important;
    border-radius: 2rem !important;
    overflow: hidden !important;
}

/* DESKTOP & TABLET: Seamless Integration & Upward Shift into Platform Architecture (No White Background) */
@media (min-width: 768px) {
    .features-section {
        padding-bottom: 1.5rem !important;
    }

    .gallery-marquee-wrapper {
        background: transparent !important;
        padding: 0 0 2rem 0 !important;
        margin: -1.5rem auto 2.5rem auto !important;
        width: calc(100% - 5rem) !important;
        max-width: calc(100% - 5rem) !important;
        border-radius: 2rem !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .gallery-marquee-scrim-left {
        background: linear-gradient(90deg, #f8f6f0 0%, rgba(248, 246, 240, 0) 100%) !important;
    }

    .gallery-marquee-scrim-right {
        background: linear-gradient(-90deg, #f8f6f0 0%, rgba(248, 246, 240, 0) 100%) !important;
    }
}

/* MOBILE RESPONSIVE AUDIT FIXES */
@media (max-width: 767px) {
    /* 1. Subpages Footers Full Width on Mobile (Zero Margins) */
    body.subpage-body footer,
    .subpage-body footer,
    .subpage-layout footer,
    .marketing-layout footer {
        margin: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
    }

    /* 2. Testimonials Section: 20px Left/Right Margin, 1rem Bottom Margin */
    .testimonials-section,
    #testimonials {
        overflow: hidden !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
        margin-bottom: 1rem !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        box-sizing: border-box !important;
    }
    .testimonials-grid,
    .testimonial-card {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 3. Mobile Hero Canvas Clear Top Image (Remove Dark Top Overlay) */
    .hero-canvas-scrim,
    .skiper-liquid-overlay {
        background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0, 0, 0, 0.85) 100%) !important;
    }

    /* 4. Universal Mobile Section Top Padding Rule: 1rem (EXCEPT Hero Section) */
    .about-section,
    .stats-section,
    .problem-section,
    .pain-section,
    .features-section,
    .pos-sync-section,
    .vendor-section,
    .comparison-section,
    .mobile-section,
    .testimonials-section,
    .how-it-works-section,
    .blog-section,
    .modules-section,
    .subpage-card-section {
        padding-top: 1rem !important;
    }

    .features-section {
        padding-bottom: 0.25rem !important;
        margin-bottom: 0 !important;
        border: none !important;
        border-bottom: none !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        outline: none !important;
    }

    /* Mobile Gallery Marquee: 0px Top Padding, 70px Bottom Padding, Flat 0px Corners, Zero Horizontal Connecting Line */
    .gallery-marquee-wrapper {
        background: #f8f6f0 !important; /* Seamless Light Cream continuation matching Platform Architecture */
        padding-top: 0 !important;
        padding-bottom: 70px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        position: relative !important;
        z-index: 5 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-radius: 0 !important; /* Flat 0px corners on mobile */
        outline: none !important;
        box-sizing: border-box !important;
        box-shadow: none !important;
    }

    .gallery-marquee-item {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important; /* Pure downward subtle shadow, ZERO top line connecting cards */
        border: none !important;
        outline: none !important;
    }

    .gallery-marquee-scrim-left {
        background: linear-gradient(90deg, #f8f6f0 0%, rgba(248, 246, 240, 0) 100%) !important;
        border: none !important;
    }

    .gallery-marquee-scrim-right {
        background: linear-gradient(-90deg, #f8f6f0 0%, rgba(248, 246, 240, 0) 100%) !important;
        border: none !important;
    }

    /* DARK BACKGROUND (#050710) STARTS ONLY AT WHY OPERATORS SWITCH (.comparison-section) BELOW MARQUEE (1rem Top Padding, 4rem Bottom Padding) */
    .comparison-section {
        background-color: #050710 !important; /* Dark Navy/Black background starts HERE */
        padding-top: 1rem !important; /* 1rem Top Padding on Mobile */
        padding-bottom: 4rem !important; /* 4rem Bottom Padding on Mobile */
        margin-top: 0 !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Flutter Staff Operation (.mobile-section) 1rem Top Padding */
    .mobile-section {
        padding-top: 1rem !important;
    }

    /* Footer "Ready to Unify" CTA Band & Button Mobile Fixes */
    .footer-cta-band,
    .cta-section,
    #cta {
        margin-top: 1rem !important;
    }

    .footer-cta-band .btn-pill,
    .footer-cta-band .js-book-visit-btn,
    .footer-cta-band button,
    footer .footer-cta-band .btn-pill,
    footer .footer-cta-band button {
        background: #ffffff !important;
        background-color: #ffffff !important;
        color: #080c19 !important;
        border: none !important;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25) !important;
    }
    .footer-cta-band .btn-pill *,
    .footer-cta-band .js-book-visit-btn *,
    .footer-cta-band button *,
    footer .footer-cta-band button * {
        color: #080c19 !important;
        font-weight: 700 !important;
    }
    .footer-cta-band .btn-pill svg,
    .footer-cta-band .js-book-visit-btn svg,
    .footer-cta-band button svg {
        stroke: #080c19 !important;
        color: #080c19 !important;
    }

    /* Universal Mobile Left Alignment Across ALL Frontend Pages */
    body section,
    body .section-header,
    body .features-header,
    body .comparison-header,
    body .hiw-header,
    body .eyebrow,
    body h1,
    body h2,
    body h3,
    body h4,
    body p,
    body.subpage-body section,
    body.subpage-body .subpage-card-section,
    body.subpage-body .section-header,
    body.subpage-body .eyebrow,
    body.subpage-body h1,
    body.subpage-body h2,
    body.subpage-body h3,
    body.subpage-body p,
    .subpage-layout section,
    .subpage-layout .section-header,
    .marketing-layout section,
    .marketing-layout .section-header {
        text-align: left !important;
    }
}

/* SUBPAGES EYEBROWS: REMOVE PILL BADGES ON ALL MARKETING & SOLUTION SUBPAGES (KEEP BULLET POINT) */
body.subpage-body .eyebrow,
body.subpage-body .subpage-eyebrow,
body.subpage-body .section-eyebrow,
.subpage-layout .eyebrow,
.marketing-layout .eyebrow {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #4C6FFF !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* FOOTER BOTTOM LEGAL LINKS, PCI/SSL BADGES SINGLE ROW, & DISCLAIMER CARD */
.footer-bottom-main-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin-bottom: 1.25rem !important;
}
.footer-copyright-text {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
}
.footer-legal-inline-links {
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    flex-wrap: wrap !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}
.footer-legal-inline-links .legal-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
}
.footer-legal-inline-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}
.footer-legal-inline-links a:hover {
    color: #4C6FFF !important;
}
.footer-legal-inline-links .legal-dot {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.8rem !important;
}

.footer-badges-single-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 1.25rem !important;
    gap: 1rem !important;
}
.footer-badge-left,
.footer-badge-right {
    height: 42px !important;
    max-height: 42px !important;
    object-fit: contain !important;
}

.footer-disclaimer-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.85rem !important;
    padding: 20px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.footer-disclaimer-text {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    text-align: left !important;
}

.btn-subtext {
    display: block !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    opacity: 0.88 !important;
    margin-top: 2px !important;
    text-transform: none !important;
}

@media (max-width: 1023px) {
    .site-sticky-header,
    .landing-header,
    .menu-header,
    body .site-sticky-header,
    body.subpage-body .site-sticky-header,
    .subpage-body .site-sticky-header {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 767px) {
    footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }
    .footer-bottom-main-row {
        order: 1 !important;
        margin-bottom: 1.25rem !important;
    }
    .footer-disclaimer-card {
        order: 2 !important;
        margin: 0 0 1.25rem 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .footer-badges-single-row {
        order: 3 !important;
        margin-bottom: 0 !important;
    }

    /* Testimonials Section 50px Bottom Margin on Mobile */
    .testimonials-section,
    #testimonials {
        margin-bottom: 50px !important;
    }

    /* Reduced Gap Between Section Header/Content and Inner Grid/Icon Boxes */
    .section-header-wrap,
    .comparison-header,
    .features-header,
    .hiw-header,
    .section-header {
        margin-bottom: 1.25rem !important;
    }

    .features-grid,
    .problem-grid,
    .pain-cards-grid,
    .modules-grid,
    .stats-grid,
    .subpage-cards-grid,
    .grid,
    .icon-boxes {
        margin-top: 0.75rem !important;
    }

    /* Universal Equal 20px Left & Right Margins for All Subpage Sections & Cards (Resort, Banquet, Restaurant, Hotel, Bar, etc.) */
    body.subpage-body .subpage-hero,
    .subpage-body .subpage-hero,
    .subpage-layout .subpage-hero,
    .marketing-layout .subpage-hero,
    body.subpage-body .subpage-card-section,
    .subpage-body .subpage-card-section,
    .subpage-layout .subpage-card-section,
    .marketing-layout .subpage-card-section {
        margin-left: 20px !important;
        margin-right: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        box-sizing: border-box !important;
    }

    body.subpage-body .subpage-grid,
    .subpage-body .subpage-grid,
    .subpage-layout .subpage-grid,
    .marketing-layout .subpage-grid,
    body.subpage-body .subpage-feature-card,
    .subpage-body .subpage-feature-card,
    .subpage-layout .subpage-feature-card,
    .marketing-layout .subpage-feature-card {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
}

    /* 5. Mobile Mega Menu Top Padding & Off-Canvas Drilldown Navigation */
    .menu-panel {
        padding-top: 6.5rem !important; /* Cleans logo & close button overlap */
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* CodeAir Software Solutions Hyperlink Styling */
.codeair-hyperlink {
    color: #4C6FFF !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    transition: color 0.2s ease !important;
}
.codeair-hyperlink:hover {
    color: #3b5bdb !important;
}

/* DESKTOP VS MOBILE OFF-CANVAS MULTI-PAGE MENU NAVIGATION */
@media (min-width: 1024px) {
    .desktop-columns-view { display: grid !important; }
    .mobile-offcanvas-view { display: none !important; }
}

@media (max-width: 1023px) {
    .desktop-columns-view { display: none !important; }
    .mobile-offcanvas-view {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
        min-height: 100% !important;
    }

    .mobile-page-view {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        min-height: 75vh !important;
        width: 100% !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
    }

    .mobile-page-view.sub-view {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        transform: translateX(100%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .mobile-page-view.sub-view.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
    }

    .mobile-page-view.main-page.sliding-out {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Mobile Category Items (Level 1) */
    .mobile-cat-list {
        list-style: none !important;
        margin: 0 0 2rem 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .mobile-cat-item {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1.1rem 1.25rem !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 1rem !important;
        color: #ffffff !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: background 0.2s ease, border-color 0.2s ease !important;
    }
    .mobile-cat-item:active {
        background: rgba(76, 111, 255, 0.15) !important;
        border-color: rgba(76, 111, 255, 0.4) !important;
    }

    /* Mobile Subpage Top Back Bar (Level 2) */
    .mobile-back-bar {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        background: none !important;
        border: none !important;
        color: #4C6FFF !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        padding: 0 0 1rem 0 !important;
        cursor: pointer !important;
    }

    .mobile-sub-heading {
        color: #ffffff !important;
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        margin: 0 0 1.25rem 0 !important;
    }

    .mobile-sub-link-list {
        list-style: none !important;
        margin: 0 0 2rem 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.85rem !important;
    }

    .mobile-sub-link-list a {
        display: block !important;
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 0.75rem 1rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 0.75rem !important;
        text-decoration: none !important;
        transition: background 0.2s ease, color 0.2s ease !important;
    }
    .mobile-sub-link-list a.highlight-brand {
        color: #4C6FFF !important;
        font-weight: 600 !important;
    }

    .mobile-sub-link-list a:active {
        background: rgba(76, 111, 255, 0.2) !important;
        color: #ffffff !important;
    }
}
