
        /* WordPress Theme Override - Ensure Responsiveness */
        /* Override WordPress theme containers that might constrain width */
        #xforensics-landing-page .wp-block-group,
        #xforensics-landing-page .wp-block-columns,
        #xforensics-landing-page .wp-block-column,
        #xforensics-landing-page .entry-content,
        #xforensics-landing-page .content-area,
        #xforensics-landing-page .site-content,
        #xforensics-landing-page article,
        #xforensics-landing-page .widget,
        #xforensics-landing-page .widget-area,
        #xforensics-landing-page .wp-block-html,
        #xforensics-landing-page .elementor-widget,
        #xforensics-landing-page .elementor-section {
            max-width: 100% !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Ensure all sections are responsive by default */
        #xforensics-landing-page section {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        /* Ensure images and media are responsive */
        #xforensics-landing-page img,
        #xforensics-landing-page video,
        #xforensics-landing-page iframe,
        #xforensics-landing-page embed,
        #xforensics-landing-page object {
            max-width: 100% !important;
            height: auto !important;
        }

        #xforensics-landing-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: 'Times New Roman', Times, serif; */
        }

        :root {
            --accent-color: #720002;
            --primary-color: #720002;
            --text-primary: #fafafa;
            --text-secondary: rgba(255, 255, 255, 0.9);
            --bg-overlay: rgba(0, 0, 0, 0.5);
            --font-serif: 'Times New Roman', serif;
            --font-sans: 'Inter', sans-serif;
            --services-text: #2d2d2d;
            --services-text-light: #666666;
            --services-bg: #ffffff;
            --services-card-bg: #ffffff;
            --services-tag-bg: #f5f5f5;
            --services-tag-text: #4a4a4a;
        }

        #xforensics-landing-page {
            font-family: var(--font-sans) !important;
            color: var(--text-primary);
            overflow-x: hidden !important;
            background-color: #f5f0e8;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            overflow-x: hidden !important;
        }

        #xforensics-landing-page.mobile-nav-open {
            overflow: hidden;
        }

        #xforensics-landing-page .container {
            max-width: 1200px !important;
            width: 100% !important;
            margin: 0 auto !important;
            padding: 0 20px !important;
            box-sizing: border-box !important;
        }

        /* Header Styles */
        #xforensics-landing-page .header {
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            z-index: 1000;
            background: #f5f0e8;
            backdrop-filter: blur(10px);
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        #xforensics-landing-page .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        #xforensics-landing-page .logo-section {
            display: flex;
            align-items: center;
        }

        #xforensics-landing-page .logo {

            font-size: 28px !important;
            font-weight: 700;
            color: #2d2d2d;
            font-family: var(--font-sans);
            letter-spacing: -0.5px;
        }

        #xforensics-landing-page .logo-mark {
            width: 130px;
            height: 24px;
            background: #f5f0e8;
            margin-right: 10px;
            flex-shrink: 0;
        }

        #xforensics-landing-page .nav {
            display: flex;
            gap: 30px;
            flex: 1;
            justify-content: center;
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .nav-link {
            color: #2d2d2d;
            text-decoration: none;
            font-weight: 400;
            font-size: 15px !important;
            transition: color 0.3s ease;
            font-family: var(--font-sans);
        }

        #xforensics-landing-page .nav-link:hover {
            color: var(--accent-color);
        }

        /* Dropdown Menu */
        #xforensics-landing-page .nav-dropdown {
            position: relative;
        }

        #xforensics-landing-page .nav-link-dropdown {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        #xforensics-landing-page .dropdown-chevron {
            font-size: 11.2px !important;
            transition: transform 0.3s ease;
        }

        #xforensics-landing-page .nav-dropdown:hover .dropdown-chevron {
            transform: rotate(180deg);
        }

        #xforensics-landing-page .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 10;
            background: #f5f0e8;
            backdrop-filter: blur(10px);
            min-width: 280px;
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        #xforensics-landing-page .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #xforensics-landing-page .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: #2d2d2d;
            text-decoration: none;
            font-size: 14px !important;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        #xforensics-landing-page .dropdown-item:hover {
            background: rgba(71, 0, 0, 0.08);
            color: var(--accent-color);
            border-left-color: var(--accent-color);
            padding-left: 24px;
        }

        #xforensics-landing-page .btn-header-cta {
            background: #f5f0e8;
            color: #2d2d2d;
            padding: 10px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px !important;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, filter 0.3s ease, color 0.3s ease;
            font-family: var(--font-sans);
            white-space: nowrap;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        #xforensics-landing-page .mobile-nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: #ffffff;
            color: #2d2d2d;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        #xforensics-landing-page .mobile-nav-toggle:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(114, 0, 2, 0.25);
        }

        #xforensics-landing-page .nav-close-btn {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: transparent;
            border: none;
            font-size: 40px !important;
            color: #2d2d2d;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            z-index: 2147483634;
            /* Above nav content */
        }

        #xforensics-landing-page .mobile-nav-icon,
        #xforensics-landing-page .mobile-nav-icon::before,
        #xforensics-landing-page .mobile-nav-icon::after {
            display: block;
            width: 20px;
            height: 2px;
            background: #2d2d2d;
            border-radius: 2px;
            position: relative;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        #xforensics-landing-page .mobile-nav-icon::before,
        #xforensics-landing-page .mobile-nav-icon::after {
            content: '';
            position: absolute;
            left: 0;
        }

        #xforensics-landing-page .mobile-nav-icon::before {
            top: -6px;
        }

        #xforensics-landing-page .mobile-nav-icon::after {
            top: 6px;
        }

        #xforensics-landing-page .nav-open .mobile-nav-icon {
            background: transparent;
        }

        #xforensics-landing-page .nav-open .mobile-nav-icon::before {
            transform: translateY(6px) rotate(45deg);
        }

        #xforensics-landing-page .nav-open .mobile-nav-icon::after {
            transform: translateY(-6px) rotate(-45deg);
        }

        #xforensics-landing-page .btn-header-cta:hover {
            background: #ffffff;
            color: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 18px rgba(71, 0, 0, 0.25);
        }

        #xforensics-landing-page .btn-header-cta:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(71, 0, 0, 0.35);
        }

        /* Hero Section */
        #xforensics-landing-page .hero {
            position: relative;
            /* padding: 140px 0 80px; */
            padding-bottom: 50px;
            overflow: hidden;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page .hero-background {
            position: absolute;
            inset: 0;
            background-image: url('https://xforensics.ca/wp-content/uploads/2025/11/image_1.png');
            background-size: cover;
            background-position: center;
            z-index: 0;
            filter: brightness(1.05);
        }

        #xforensics-landing-page .hero-overlay {
            position: absolute;
            inset: 0;
            #xforensics-landing-page background: linear-gradient(to right,
                    #xforensics-landing-page rgba(217, #xforensics-landing-page 204, #xforensics-landing-page 172, #xforensics-landing-page 0.8) 0%,
                    #xforensics-landing-page rgba(224, #xforensics-landing-page 209, #xforensics-landing-page 172, #xforensics-landing-page 0.6) 50%,
                    rgba(255, 255, 255, 0.4) 100%);
            z-index: 1;
        }

        #xforensics-landing-page .hero-container {
            width: 100%;
            position: relative;
            z-index: 2;
        }

        #xforensics-landing-page .hero-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 50px;
            align-items: center;
            padding-top: 40px;
        }

        #xforensics-landing-page .hero-left {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 560px;
        }

        #xforensics-landing-page .hero-eyebrow {
            font-size: 15.2px !important;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(0, 0, 0, 0.6);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        #xforensics-landing-page .hero-eyebrow svg {
            width: 18px;
            height: 18px;
            margin-left: 6px;
            color: inherit;
        }

        #xforensics-landing-page .hero-headline {
            font-family: var(--font-serif);
            font-size: clamp(38.4px, 3.8vw, 51.2px) !important;
            line-height: 1.1;
            color: #1b0d0d;
            margin: 0;
        }

        #xforensics-landing-page .hero-headline-line {
            display: block;
            font-size: clamp(32px, 3.2vw, 41.6px) !important;
            line-height: 1.1;
            margin-top: 4px;
        }

        #xforensics-landing-page .hero-subheadline {
            font-size: 18.4px !important;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.75);
        }

        #xforensics-landing-page .hero-benefits {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px 24px;
        }

        #xforensics-landing-page .hero-benefits li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px !important;
            font-weight: 600;
            color: #2f1a1a;
        }

        #xforensics-landing-page .hero-benefits i {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(114, 0, 2, 0.1);
            color: var(--accent-color);
        }

        #xforensics-landing-page .hero-cta {
            align-self: flex-start;
            padding: 16px 32px;
            font-size: 16px !important;
        }

        #xforensics-landing-page .hero-metric-bar {
            background: rgba(255, 255, 255, 0.411);
        }

        #xforensics-landing-page .hero-metric-bar--full {
            padding: 28px 0;
        }

        #xforensics-landing-page .hero-metric-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            text-align: center;
        }

        #xforensics-landing-page .hero-metric {
            text-align: center;
        }

        #xforensics-landing-page .hero-metric-value {
            font-family: var(--font-serif);
            font-size: 38.4px !important;
            color: #720002;
            font-weight: 700;
            margin-bottom: 4px;
        }

        #xforensics-landing-page .hero-metric-label {
            font-size: 15.2px !important;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #2f1a1a;
        }

        #xforensics-landing-page .hero-right {
            display: flex;
            justify-content: flex-end;
        }

        #xforensics-landing-page .hero-form-card {
            width: 100%;
            max-width: 440px;
            background: rgba(255, 250, 243, 0.94);
            border-radius: 18px;
            padding: 28px 30px;
            box-shadow: 0 25px 70px rgba(15, 15, 35, 0.12);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: auto;
        }

        #xforensics-landing-page .hero-form-title {
            font-family: var(--font-serif);
            font-size: 25.6px !important;
            font-weight: 700;
            color: #1b0d0d;
            margin-bottom: 30px;
            text-align: center;
        }

        #xforensics-landing-page .hero-consultation-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        #xforensics-landing-page .hero-consultation-form .form-group {
            margin-bottom: 0;
        }

        #xforensics-landing-page .hero-consultation-form .form-input {
            background: #fff;
            border: 1px solid #dddddd;
            border-radius: 10px;
            padding: 12px 14px;
        }

        #xforensics-landing-page .hero-consultation-form .form-input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(114, 0, 2, 0.08);
        }

        #xforensics-landing-page .hero-consultation-form .form-textarea {
            resize: vertical;
            min-height: 70px;
        }

        #xforensics-landing-page .hero-consultation-form .btn-submit {
            width: 100%;
            margin-top: 4px;
        }

        /* Image Ticker */
        #xforensics-landing-page .ticker-section {
            background: transparent;
            padding: 20px 0;
            margin-top: 40px;
        }

        #xforensics-landing-page .ticker-label {
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 13.6px !important;
            color: #720002;
            font-weight: 600;
        }

        #xforensics-landing-page .ticker-wrapper {
            margin-top: 24px;
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        #xforensics-landing-page .ticker-wrapper::before,
        #xforensics-landing-page .ticker-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            pointer-events: none;
            z-index: 1;
        }

        /* .ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

#xforensics-landing-page .ticker-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
} */

        #xforensics-landing-page .ticker-track {
            display: inline-flex;
            align-items: center;
            gap: 25px;
            will-change: transform;
            transform: translate3d(0, 0, 0);
        }

        #xforensics-landing-page .ticker-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 35px;
        }

        #xforensics-landing-page .ticker-item img {
            height: clamp(56px, 4vw, 56px) !important;
            width: auto;
            object-fit: contain;
            filter: opacity(0.85);
            transition: transform 0.3s ease, filter 0.3s ease;
            max-width: 120px;
        }

        #xforensics-landing-page .ticker-item img:hover {
            filter: opacity(1);
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            #xforensics-landing-page .ticker-section {
                padding: 20px 0;
            }

            #xforensics-landing-page .ticker-label {
                font-size: 12px !important;
                letter-spacing: 0.15em;
            }

            #xforensics-landing-page .ticker-track {
                gap: 20px;
            }

            #xforensics-landing-page .ticker-item {
                min-height: 30px;
            }

            #xforensics-landing-page .ticker-item img {
                height: 40px !important;
                max-width: 100px;
            }
        }

        @keyframes blink {

            0%,
            50% {
                opacity: 1;
            }

            51%,
            100% {
                opacity: 0;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        #xforensics-landing-page .btn {
            padding: 16px 32px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px !important;
            transition: all 0.3s ease;
            font-family: var(--font-sans);
            display: inline-block;
        }

        #xforensics-landing-page .btn-primary {
            background: #720002;
            border: 2px solid #720002;
            color: var(--text-primary);
        }

        #xforensics-landing-page .btn-primary:hover {
            background: #ffffff;
            border-color: #720002;
            color: #720002;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(71, 0, 0, 0.25);
        }

        #xforensics-landing-page .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--accent-color);
        }

        #xforensics-landing-page .btn-outline:hover {
            background: var(--accent-color);
            color: var(--text-primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(71, 0, 0, 0.25);
        }

        /* Ticker Section */
        #xforensics-landing-page .ticker-section {
            background: transparent;
            padding: 20px 0;
            margin-top: 40px;
        }

        #xforensics-landing-page .ticker {
            overflow: hidden;
            width: 100vw;
            /* full-bleed */
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        #xforensics-landing-page .ticker-track {
            display: inline-flex;
            align-items: center;
            gap: 80px;
            will-change: transform;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translate3d(0, 0, 0);
        }

        #xforensics-landing-page .ticker-logo {
            height: 28px;
            opacity: 0.95;
            transition: opacity 0.3s ease, transform 0.3s ease;
            max-width: 120px;
        }

        #xforensics-landing-page .ticker-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }


        /* Services Section */
        #xforensics-landing-page .services {
            background: var(--services-bg);
            padding: 100px 0;
            color: var(--services-text);
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        #xforensics-landing-page .services-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: var(--services-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        #xforensics-landing-page .services-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 18px) !important;
            color: var(--services-text-light);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        #xforensics-landing-page .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        #xforensics-landing-page .service-card {
            position: relative;
            perspective: 1200px;
            height: 100%;
            min-height: 380px;
            outline: none;
            border-radius: 12px;
        }

        #xforensics-landing-page .service-card:hover {
            cursor: pointer;
        }

        #xforensics-landing-page .service-card:focus-visible {
            box-shadow: 0 0 0 3px rgba(71, 0, 0, 0.3);
            border-radius: 14px;
        }

        #xforensics-landing-page .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.75s cubic-bezier(0.2, 0.6, 0.25, 1);
            transform-style: preserve-3d;
        }

        #xforensics-landing-page .service-card.is-flipped .service-card-inner {
            transform: rotateY(180deg);
        }

        #xforensics-landing-page .service-card-face {
            position: absolute;
            inset: 0;
            border-radius: 12px;
            padding: 28px 32px;
            background: var(--services-card-bg);
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            gap: 18px;
            height: 100%;
            box-sizing: border-box;
            justify-content: flex-start;
        }

        #xforensics-landing-page .service-card-front {
            color: var(--services-text);
        }

        #xforensics-landing-page .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        #xforensics-landing-page .tag {
            background: rgba(71, 0, 0, 0.08);
            color: var(--accent-color);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px !important;
            font-weight: 600;
            font-family: var(--font-sans);
            letter-spacing: 0.3px;
        }

        #xforensics-landing-page .service-card-back {
            transform: rotateY(180deg);
            background: linear-gradient(135deg, #720002, #6B0000);
            color: #ffffff;
            gap: 16px;
        }

        #xforensics-landing-page .service-card-back::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: 11px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }

        #xforensics-landing-page .service-card:focus-within .service-card-face {
            outline: none;
        }

        #xforensics-landing-page .service-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 18px;
            color: var(--services-text);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #xforensics-landing-page .service-icon svg {
            width: 100%;
            height: 100%;
        }

        #xforensics-landing-page .service-card-front .service-icon {
            margin-bottom: 0;
        }

        #xforensics-landing-page .service-card-front .service-title {
            margin-top: 8px;
        }

        #xforensics-landing-page .service-title {
            font-family: var(--font-serif);
            font-size: 21.6px !important;
            font-weight: 700;
            color: var(--services-text);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        #xforensics-landing-page .service-description {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: var(--services-text-light);
            line-height: 1.6;
            margin-bottom: 0;
        }

        #xforensics-landing-page .service-card-back .service-description {
            color: rgba(255, 255, 255, 0.85);
        }

        #xforensics-landing-page .service-back-title {
            font-family: var(--font-serif);
            font-size: 20px !important;
            font-weight: 700;
            line-height: 1.35;
            color: white;
        }

        #xforensics-landing-page .service-back-text {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        #xforensics-landing-page .service-back-list {
            margin: 0;
            padding-left: 18px;
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        #xforensics-landing-page .service-back-list li::marker {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Process Section */
        #xforensics-landing-page .process {
            background: #f8f8f8;
            padding: 50px 0;
            color: var(--services-text);
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page .process-header {
            text-align: center;
            margin-bottom: 60px;
        }

        #xforensics-landing-page .process-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: var(--services-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        #xforensics-landing-page .process-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 18px) !important;
            color: var(--services-text-light);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        #xforensics-landing-page .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px 40px;
            margin-bottom: 60px;
            padding-right: 30px;
            padding-left: 30px;
        }

        #xforensics-landing-page .process-step {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #xforensics-landing-page .step-number {
            position: absolute;
            top: -25px;
            width: 32px;
            height: 32px;
            background: var(--services-text);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-sans);
            font-size: 14px !important;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .step-icon-wrapper {
            width: 80px;
            height: 80px;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--services-text);
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .step-icon-wrapper svg {
            width: 40px;
            height: 40px;
        }

        #xforensics-landing-page .step-title {
            font-family: var(--font-serif);
            font-size: 21.6px !important;
            font-weight: 700;
            color: var(--services-text);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        #xforensics-landing-page .step-description {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: var(--services-text-light);
            line-height: 1.7;
            text-align: center;
        }

        #xforensics-landing-page .process-footer {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #e8e8e8;
        }

        #xforensics-landing-page .turnaround-time {
            display: inline-block;
            font-family: var(--font-sans);
            font-size: 16px !important;
            color: var(--services-text);
            font-weight: 600;
        }

        #xforensics-landing-page .turnaround-label {
            font-weight: 400;
            color: var(--services-text-light);
        }

        #xforensics-landing-page .bullet-separator {
            margin: 0 16px;
            color: var(--services-text-light);
            font-size: 19.2px !important;
        }

        #xforensics-landing-page .rush-service {
            font-family: var(--font-sans);
            font-size: 16px !important;
            color: var(--services-text-light);
            font-weight: 400;
        }

        /* Expertise/Trust Section */
        #xforensics-landing-page .expertise {
            position: relative;
            background: #720002;
            padding: 100px 0;
            color: var(--services-text);
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            overflow: hidden;
        }

        #xforensics-landing-page .expertise::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(46, 13, 13, 0.7) 0%, rgba(39, 16, 16, 0.6) 45%, rgba(55, 4, 4, 0.7) 100%);
            z-index: 1;
            pointer-events: none;
        }

        #xforensics-landing-page .expertise-background {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            display: flex;
        }

        #xforensics-landing-page .expertise .container {
            position: relative;
            z-index: 2;
        }

        #xforensics-landing-page .expertise-bg {
            flex: 1;
            background-size: cover;
            background-position: center;
            opacity: 0;
            filter: saturate(0.9);
            transform: translateY(-18%);
            animation-fill-mode: forwards;
        }

        #xforensics-landing-page .expertise-bg-1 {
            background-image: url('1.jpg');
        }

        #xforensics-landing-page .expertise-bg-2 {
            background-image: url('2.jpg');
            transform: translateY(18%);
        }

        #xforensics-landing-page .expertise-bg-3 {
            background-image: url('3.jpg');
        }

        #xforensics-landing-page .expertise-bg-4 {
            background-image: url('4.jpg');
            transform: translateY(18%);
        }

        @keyframes expertiseSlideTop {
            from {
                opacity: 0;
                transform: translateY(-18%);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expertiseSlideBottom {
            from {
                opacity: 0;
                transform: translateY(18%);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #xforensics-landing-page .expertise.show-background .expertise-bg-1 {
            animation: expertiseSlideTop 1.2s ease-out 0s forwards;
        }

        #xforensics-landing-page .expertise.show-background .expertise-bg-2 {
            animation: expertiseSlideBottom 1.2s ease-out 0.6s forwards;
        }

        #xforensics-landing-page .expertise.show-background .expertise-bg-3 {
            animation: expertiseSlideTop 1.2s ease-out 1.2s forwards;
        }

        #xforensics-landing-page .expertise.show-background .expertise-bg-4 {
            animation: expertiseSlideBottom 1.2s ease-out 1.8s forwards;
        }

        #xforensics-landing-page .expertise-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        #xforensics-landing-page .expertise-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        #xforensics-landing-page .expertise-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 18px) !important;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        #xforensics-landing-page .expertise-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
            max-width: 980px;
            margin: 0 auto;
        }

        #xforensics-landing-page .expertise-card {
            background: var(--services-card-bg);
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            isolation: isolate;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 240px;
        }

        #xforensics-landing-page .expertise-card::before {
            content: '';
            position: absolute;
            inset: -0.5px;
            border-radius: 12px;
            background: linear-gradient(135deg, #720002, #6B0000);
            z-index: -1;
        }

        #xforensics-landing-page .expertise-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            background: var(--services-card-bg);
            z-index: -1;
        }

        #xforensics-landing-page .expertise-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        #xforensics-landing-page .expertise-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            color: #b0b0b0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
            font-size: 40px !important;
        }

        #xforensics-landing-page .expertise-card:hover .expertise-icon {
            color: var(--accent-color);
        }

        #xforensics-landing-page .expertise-icon svg {
            width: 100%;
            height: 100%;
        }

        #xforensics-landing-page .expertise-icon i {
            font-size: inherit !important;
            color: inherit;
        }

        #xforensics-landing-page .expertise-number {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: var(--services-text);
            margin-bottom: 12px;
            line-height: 1;
            transition: color 0.3s ease;
        }

        #xforensics-landing-page .expertise-number.animating {
            color: var(--accent-color);
        }

        #xforensics-landing-page .expertise-label {
            font-family: var(--font-sans);
            font-size: 15.2px !important;
            color: var(--services-text-light);
            font-weight: 400;
        }

        /* Testimonials Section */
        #xforensics-landing-page .testimonials {
            background: #f8f8f8;
            padding: 100px 0;
            color: var(--services-text);
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page .testimonials-header {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 32px;
            margin-bottom: 60px;
        }

        #xforensics-landing-page .testimonials-header>div:first-child {
            min-width: 0;
        }

        #xforensics-landing-page .testimonials-eyebrow {
            font-size: 13.6px !important;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        #xforensics-landing-page .testimonials-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: var(--services-text);
            margin-bottom: 16px;
            line-height: 1.1;
        }

        #xforensics-landing-page .testimonials-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 17.6px) !important;
            color: var(--services-text-light);
            max-width: 560px;
            line-height: 1.6;
        }

        #xforensics-landing-page .google-rating-summary {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        #xforensics-landing-page .google-logo-dot {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        #xforensics-landing-page .google-g {
            font-weight: 700;
            font-size: 22.4px !important;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(120deg, #4285F4, #34A853, #FBBC05, #EA4335);
            background-clip: text;
            color: transparent;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        #xforensics-landing-page .google-rating-details {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        #xforensics-landing-page .rating-score {
            font-size: 28px !important;
            font-weight: 700;
            color: var(--services-text);
        }

        #xforensics-landing-page .rating-out-of {
            font-size: 16px !important;
            color: var(--services-text-light);
        }

        #xforensics-landing-page .rating-stars {
            display: flex;
            gap: 4px;
            color: #F4B400;
        }

        #xforensics-landing-page .rating-caption {
            font-size: 14.4px !important;
            color: var(--services-text-light);
        }

        #xforensics-landing-page .google-review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        #xforensics-landing-page .google-review-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            gap: 18px;
            #xforensics-landing-page transition: transform 0.3s ease-in-out,
                box-shadow 0.3s ease-in-out;
        }

        #xforensics-landing-page .google-review-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            cursor: pointer;
        }

        #xforensics-landing-page .testimonial-carousel {
            position: relative;
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 20px;
        }

        #xforensics-landing-page .carousel-viewport {
            overflow: hidden;
            flex: 1;
            border-radius: 20px;
        }

        #xforensics-landing-page .carousel-track {
            display: flex;
            gap: 24px;
            margin: 20px 15px;
            transition: transform 0.6s ease;
        }

        #xforensics-landing-page .carousel-track .google-review-card {
            flex: 0 0 calc((100% - 48px) / 3);
            max-width: calc((100% - 48px) / 3);
        }

        #xforensics-landing-page .carousel-nav {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: #fff;
            color: var(--services-text);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
        }

        #xforensics-landing-page .carousel-nav:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        #xforensics-landing-page .carousel-nav:hover:not(:disabled) {
            background: var(--accent-color);
            color: #fff;
        }

        #xforensics-landing-page .review-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        #xforensics-landing-page .review-stars {
            display: flex;
            gap: 4px;
            color: #F4B400;
        }

        #xforensics-landing-page .google-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(66, 133, 244, 0.08);
            font-size: 13.6px !important;
            font-weight: 600;
            color: var(--services-text);
        }

        #xforensics-landing-page .review-timestamp {
            font-size: 13.6px !important;
            color: var(--services-text-light);
            margin-top: -6px;
        }

        #xforensics-landing-page .review-text {
            font-size: 15.2px !important;
            line-height: 1.7;
            color: var(--services-text);
            flex-grow: 1;
        }

        #xforensics-landing-page .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        #xforensics-landing-page .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(114, 0, 2, 0.12);
            color: var(--accent-color);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-sans);
        }

        #xforensics-landing-page .author-name {
            font-family: var(--font-serif);
            font-size: 16.8px !important;
            font-weight: 700;
            color: var(--services-text);
        }

        #xforensics-landing-page .author-role {
            font-size: 13.6px !important;
            color: var(--services-text-light);
        }

        /* Why Choose Us Section */
        #xforensics-landing-page .why-choose-us {
            background: #ffffff;
            padding: 90px 0;
            color: var(--services-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page .why-choose-us-header {
            text-align: center;
            margin-bottom: 50px;
        }

        #xforensics-landing-page .why-choose-us-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            margin-bottom: 16px;
        }

        #xforensics-landing-page .why-choose-us-subtitle {
            max-width: 820px;
            margin: 0 auto;
            font-size: 16.8px !important;
            line-height: 1.7;
            color: var(--services-text-light);
        }

        #xforensics-landing-page .trust-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px;
        }

        #xforensics-landing-page .trust-feature-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 26px;
            box-shadow: 0 25px 70px rgba(46, 1, 8, 0.032);
            border: 1px solid rgba(83, 0, 0, 0.317);
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-height: 100%;
            transition: transform 0.3s ease-in-out;
            border-bottom: 2px solid rgba(83, 0, 0, 0.317);
        }

        #xforensics-landing-page .trust-feature-card:hover {
            transform: scale(1.03);
        }

        #xforensics-landing-page .trust-feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(114, 0, 2, 0.12);
            color: var(--accent-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20.8px !important;
        }

        #xforensics-landing-page .trust-feature-card h3 {
            font-family: var(--font-serif);
            font-size: 20px !important;
            margin: 0;
            color: var(--services-text);
        }

        #xforensics-landing-page .trust-feature-card p {
            margin: 0;
            font-size: 15.2px !important;
            line-height: 1.6;
            color: var(--services-text-light);
        }

        @media (max-width: 992px) {
            #xforensics-landing-page .trust-feature-grid {
                gap: 20px;
                display: flex;
                flex-direction: column;
            }
        }

        /* Contact/Consultation Section */
        #xforensics-landing-page .contact {
            background: var(--services-bg);
            padding: 50px 0;
            color: var(--services-text);
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        #xforensics-landing-page .contact-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: var(--services-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        #xforensics-landing-page .contact-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 18px) !important;
            color: var(--services-text-light);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        #xforensics-landing-page .contact-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        #xforensics-landing-page .contact-form-wrapper {
            background: var(--services-card-bg);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        #xforensics-landing-page .consultation-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        #xforensics-landing-page .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        #xforensics-landing-page .form-label {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            font-weight: 500;
            color: var(--services-text);
        }

        #xforensics-landing-page .required {
            color: #e74c3c;
        }

        #xforensics-landing-page .optional {
            color: var(--services-text-light);
            font-weight: 400;
        }

        #xforensics-landing-page .form-input {
            font-family: var(--font-sans);
            font-size: 16px !important;
            padding: 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            background: #ffffff;
            color: var(--services-text);
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .form-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(71, 0, 0, 0.1);
        }

        #xforensics-landing-page .form-input::placeholder {
            color: #b0b0b0;
        }

        #xforensics-landing-page .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        #xforensics-landing-page .char-count {
            font-family: var(--font-sans);
            font-size: 12px !important;
            color: var(--services-text-light);
            text-align: right;
            margin-top: 4px;
        }

        #xforensics-landing-page .checkbox-group {
            margin-top: 8px;
        }

        #xforensics-landing-page .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: var(--services-text);
            cursor: pointer;
            line-height: 1.5;
        }

        #xforensics-landing-page .checkbox-label input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--accent-color);
            flex-shrink: 0;
        }

        #xforensics-landing-page .btn-submit {
            background: var(--accent-color);
            color: var(--text-primary);
            border: none;
            padding: 16px 32px;
            border-radius: 6px;
            font-family: var(--font-sans);
            font-size: 16px !important;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        #xforensics-landing-page .btn-submit:hover {
            background: #350000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(71, 0, 0, 0.25);
        }

        #xforensics-landing-page .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        #xforensics-landing-page .contact-info-panel {
            background: var(--services-card-bg);
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        #xforensics-landing-page .info-panel-title {
            font-family: var(--font-serif);
            font-size: 24px !important;
            font-weight: 700;
            color: var(--services-text);
            margin-bottom: 24px;
        }

        #xforensics-landing-page .contact-item {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        #xforensics-landing-page .contact-item:last-child {
            margin-bottom: 0;
        }

        #xforensics-landing-page .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(71, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 19.2px !important;
            flex-shrink: 0;
        }

        #xforensics-landing-page .contact-details {
            flex: 1;
        }

        #xforensics-landing-page .contact-main {
            font-family: var(--font-sans);
            font-size: 16px !important;
            font-weight: 600;
            color: var(--services-text);
            margin-bottom: 4px;
        }

        #xforensics-landing-page .contact-sub {
            font-family: var(--font-sans);
            font-size: 13.6px !important;
            color: var(--services-text-light);
        }

        #xforensics-landing-page .next-steps-panel {
            background: #470000;
            border-radius: 12px;
            padding: 32px;
            color: #ffffff;
        }

        #xforensics-landing-page .next-steps-title {
            font-family: var(--font-serif);
            font-size: 24px !important;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
        }

        #xforensics-landing-page .next-steps-list {
            font-family: var(--font-sans);
            font-size: 15.2px !important;
            line-height: 1.8;
            padding-left: 20px;
            margin: 0;
        }

        #xforensics-landing-page .next-steps-list li {
            margin-bottom: 12px;
            color: #ffffff;
        }

        #xforensics-landing-page .next-steps-list li:last-child {
            margin-bottom: 0;
        }

        /* FAQ Section */
        #xforensics-landing-page .faq {
            background: #f8f8f8;
            padding: 100px 0;
            color: var(--services-text);
        }

        #xforensics-landing-page .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        #xforensics-landing-page .faq-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: var(--services-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        #xforensics-landing-page .faq-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 18px) !important;
            color: var(--services-text-light);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        #xforensics-landing-page .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        #xforensics-landing-page .faq-item {
            background: var(--services-card-bg);
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid #e8e8e8;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        }

        #xforensics-landing-page .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-color: rgba(71, 0, 0, 0.2);
        }

        #xforensics-landing-page .faq-item.active {
            border-color: var(--accent-color);
            box-shadow: 0 4px 16px rgba(71, 0, 0, 0.15);
        }

        #xforensics-landing-page .faq-question {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px 28px;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
            position: relative;
        }

        #xforensics-landing-page .faq-question:hover {
            background: rgba(71, 0, 0, 0.03);
        }

        #xforensics-landing-page .faq-item.active .faq-question {
            background: rgba(71, 0, 0, 0.05);
        }

        #xforensics-landing-page .faq-icon-wrapper {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(71, 0, 0, 0.15), rgba(71, 0, 0, 0.05));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 19.2px !important;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .faq-item.active .faq-icon-wrapper {
            background: linear-gradient(135deg, var(--accent-color), #6B0000);
            color: #ffffff;
            transform: scale(1.05);
        }

        #xforensics-landing-page .faq-question-text {
            flex: 1;
            font-family: var(--font-sans);
            font-size: 16.8px !important;
            font-weight: 600;
            color: var(--services-text);
            line-height: 1.4;
        }

        #xforensics-landing-page .faq-chevron {
            color: var(--services-text-light);
            font-size: 14.4px !important;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        #xforensics-landing-page .faq-item.active .faq-chevron {
            transform: rotate(180deg);
            color: var(--accent-color);
        }

        #xforensics-landing-page .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #fafafa;
        }

        #xforensics-landing-page .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 28px 24px;
        }

        #xforensics-landing-page .faq-answer-content {
            padding-top: 0;
            opacity: 0;
            transition: opacity 0.3s ease 0.1s;
        }

        #xforensics-landing-page .faq-item.active .faq-answer-content {
            opacity: 1;
        }

        #xforensics-landing-page .faq-answer-content p {
            font-family: var(--font-sans);
            font-size: 15.2px !important;
            color: var(--services-text-light);
            line-height: 1.8;
            margin: 0;
            padding-top: 16px;
        }

        /* CTA Section */
        #xforensics-landing-page .cta-section {
            background: #1A202C;
            padding: 100px 0;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        #xforensics-landing-page .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(71, 0, 0, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        #xforensics-landing-page .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        #xforensics-landing-page .cta-heading {
            font-family: var(--font-serif);
            font-size: clamp(40px, 5vw, 64px) !important;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 24px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        #xforensics-landing-page .cta-description {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 20px) !important;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        #xforensics-landing-page .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        #xforensics-landing-page .btn-cta-primary {
            background: #720002;
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-family: var(--font-sans);
            font-size: 17.6px !important;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid #720002;
        }

        #xforensics-landing-page .btn-cta-primary:hover {
            background: #ffffff;
            color: #720002;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(71, 0, 0, 0.25);
        }

        #xforensics-landing-page .btn-cta-outline {
            background: transparent;
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-family: var(--font-sans);
            font-size: 17.6px !important;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid #ffffff;
        }

        #xforensics-landing-page .btn-cta-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(71, 0, 0, 0.3);
        }

        #xforensics-landing-page .cta-benefits {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            font-family: var(--font-sans);
            font-size: 15.2px !important;
            color: rgba(255, 255, 255, 0.85);
        }

        #xforensics-landing-page .cta-benefit-item {
            font-weight: 500;
        }

        #xforensics-landing-page .cta-benefit-separator {
            color: rgba(255, 255, 255, 0.5);
            font-size: 19.2px !important;
        }

        /* Footer */
        #xforensics-landing-page .footer {
            background: #470000;
            padding: 60px 0 30px;
            color: #ffffff;
            border-top: 1px solid #333333;
        }

        #xforensics-landing-page .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #333333;
        }

        #xforensics-landing-page .footer-column {
            display: flex;
            flex-direction: column;
        }

        #xforensics-landing-page .footer-logo {
            font-family: var(--font-sans);
            font-size: 28.8px !important;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        #xforensics-landing-page .footer-description {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        #xforensics-landing-page .footer-accreditation {
            font-family: var(--font-sans);
            font-size: 13.6px !important;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            line-height: 1.6;
        }

        #xforensics-landing-page .footer-heading {
            font-family: var(--font-serif);
            font-size: 19.2px !important;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        #xforensics-landing-page .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        #xforensics-landing-page .footer-links li {
            margin-bottom: 12px;
        }

        #xforensics-landing-page .footer-links a {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        #xforensics-landing-page .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        #xforensics-landing-page .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        #xforensics-landing-page .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        #xforensics-landing-page .footer-contact li:last-child {
            margin-bottom: 0;
        }

        #xforensics-landing-page .footer-contact i {
            color: var(--accent-color);
            font-size: 16px !important;
            margin-top: 4px;
            flex-shrink: 0;
            width: 20px;
        }

        #xforensics-landing-page .footer-contact a {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        /* .footer-contact a:hover {
    color: var(--accent-color);
} */

        #xforensics-landing-page .footer-contact span {
            font-family: var(--font-sans);
            font-size: 14.4px !important;
            color: rgba(255, 255, 255, 0.8);
        }

        #xforensics-landing-page .contact-hours {
            display: block;
            font-size: 12.8px !important;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        #xforensics-landing-page .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        #xforensics-landing-page .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        #xforensics-landing-page .footer-copyright {
            font-family: var(--font-sans);
            font-size: 13.6px !important;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        #xforensics-landing-page .footer-legal {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        #xforensics-landing-page .footer-legal a {
            font-family: var(--font-sans);
            font-size: 13.6px !important;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        #xforensics-landing-page .footer-legal a:hover {
            color: var(--accent-color);
        }

        #xforensics-landing-page .footer-disclaimer {
            font-family: var(--font-sans);
            font-size: 12.8px !important;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            max-width: 100%;
        }

        #xforensics-landing-page .footer-disclaimer strong {
            color: #ffffff;
            font-weight: 600;
        }

        /* Sticky Free Consultation Button */
        #xforensics-landing-page .sticky-consultation-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--accent-color);
            color: #ffffff;
            padding: 14px 24px;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-sans);
            font-size: 15.2px !important;
            font-weight: 600;
            box-shadow: 0 4px 16px rgba(71, 0, 0, 0.35);
            transition: all 0.3s ease;
            z-index: 999;
            white-space: nowrap;
        }

        #xforensics-landing-page .sticky-consultation-btn:hover {
            background: #350000;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(71, 0, 0, 0.4);
            color: #ffffff;
        }

        #xforensics-landing-page .sticky-consultation-btn i {
            font-size: 17.6px !important;
        }

        #xforensics-landing-page .sticky-btn-text {
            display: inline-block;
        }

        /* Scroll to Top Button */
        #xforensics-landing-page .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            color: #ffffff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19.2px !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
        }

        #xforensics-landing-page .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #xforensics-landing-page .scroll-to-top:hover {
            background: #350000;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(71, 0, 0, 0.3);
        }

        /* Topbar */
        #xforensics-landing-page .topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 44px;
            background: #720002;
            color: #ffffff;
            z-index: 1100;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        #xforensics-landing-page .topbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        #xforensics-landing-page .topbar-link {
            color: #ffffff;
            text-decoration: underline;
            font-family: var(--font-sans);
            font-weight: 700;
            font-size: 15.2px !important;
        }

        #xforensics-landing-page .topbar-link:hover {
            opacity: 0.9;
        }

        #xforensics-landing-page .topbar-phone {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #ffffff;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px !important;
        }

        #xforensics-landing-page .topbar-phone-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13.6px !important;
        }

        #xforensics-landing-page .topbar-phone:hover .topbar-phone-icon {
            background: rgba(255, 255, 255, 0.15);
        }

        #xforensics-landing-page .topbar-phone:hover {
            opacity: 0.95;
        }

        /* Video Section */
        #xforensics-landing-page .video-section {
            background: var(--services-bg);
            padding: 100px 0;
            color: var(--services-text);
        }

        #xforensics-landing-page .video-header {
            text-align: center;
            margin-bottom: 24px;
        }

        #xforensics-landing-page .video-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4vw, 48px) !important;
            font-weight: 900;
            color: var(--services-text);
            margin-bottom: 14px;
            line-height: 1.2;
        }

        #xforensics-landing-page .video-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(16px, 2vw, 18px) !important;
            color: var(--services-text-light);
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        #xforensics-landing-page .video-container {
            max-width: 1000px;
            margin: 36px auto 0;
            padding: 0 20px;
        }

        #xforensics-landing-page .video-wrapper {
            position: relative;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            background: #000;
            aspect-ratio: 16 / 9;
        }

        #xforensics-landing-page .video-wrapper iframe,
        #xforensics-landing-page .video-wrapper video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        #xforensics-landing-page .scroll-to-top:active {
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            #xforensics-landing-page .hero-headline {
                font-size: 48px !important;
            }

            #xforensics-landing-page .header-content {
                flex-wrap: wrap;
                gap: 20px;
            }

            #xforensics-landing-page .nav {
                justify-content: flex-start;
                gap: 20px;
            }
        }


        @media (max-width: 992px) {
            #xforensics-landing-page .container {
                max-width: 100% !important;
                width: 100% !important;
                padding: 0 20px !important;
            }

            #xforensics-landing-page .mobile-nav-toggle {
                display: flex;
            }

            #xforensics-landing-page .btn-header-cta {
                display: none;
            }

            #xforensics-landing-page .hero {
                padding: 120px 0 60px;
            }

            #xforensics-landing-page .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            #xforensics-landing-page .hero-left {
                max-width: 100%;
                text-align: center;
                align-items: center;
            }

            #xforensics-landing-page .hero-subheadline {
                font-size: 16.8px !important;
            }

            #xforensics-landing-page .hero-benefits {
                grid-template-columns: 1fr;
            }

            #xforensics-landing-page .hero-benefits li {
                justify-content: center;
            }

            #xforensics-landing-page .hero-cta {
                width: 100%;
                text-align: center;
                align-self: center;
                justify-content: center;
                display: inline-flex;
            }

            #xforensics-landing-page .hero-right {
                justify-content: center;
            }

            #xforensics-landing-page .hero-form-card {
                max-width: 500px;
            }

            #xforensics-landing-page .hero-consultation-form .btn-submit {
                width: 100%;
                max-width: 260px;
                margin: 12px auto 0;
                display: flex;
                justify-content: center;
            }

            #xforensics-landing-page .btn {
                width: 100%;
                max-width: 300px;
            }

            #xforensics-landing-page .stat-number {
                font-size: 36px !important;
            }

            #xforensics-landing-page .stat-label {
                font-size: 13.6px !important;
            }
        }

        @media (max-width: 768px) {
            #xforensics-landing-page .container {
                max-width: 100% !important;
                width: 100% !important;
                padding: 0 16px !important;
            }

            #xforensics-landing-page .topbar {
                height: auto;
                padding: 8px 0;
            }

            #xforensics-landing-page .topbar-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            #xforensics-landing-page .header {
                position: sticky;
                top: 44px;
            }

            #xforensics-landing-page .btn-header-cta {
                padding: 8px 18px;
                font-size: 13px !important;
            }

            #xforensics-landing-page .dropdown-menu {
                min-width: 240px;
                left: -20px;
            }

            #xforensics-landing-page .hero {
                padding-top: 120px;
                padding-bottom: 90px;
            }

            #xforensics-landing-page .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            #xforensics-landing-page .hero-left {
                max-width: 100%;
                text-align: center;
                align-items: center;
            }

            #xforensics-landing-page .hero-subheadline {
                font-size: 16.8px !important;
            }

            #xforensics-landing-page .hero-benefits {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            #xforensics-landing-page .hero-benefits li {
                justify-content: center;
            }

            #xforensics-landing-page .hero-cta {
                width: 100%;
                text-align: center;
            }

            #xforensics-landing-page .hero-right {
                justify-content: center;
            }

            #xforensics-landing-page .hero-form-card {
                max-width: 500px;
            }

            #xforensics-landing-page .btn {
                width: 100%;
                max-width: 300px;
            }

            #xforensics-landing-page .services {
                padding: 60px 0;
            }

            #xforensics-landing-page .services-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            #xforensics-landing-page .service-card {
                padding: 28px 24px;
            }

            #xforensics-landing-page .process {
                padding: 60px 0;
            }

            #xforensics-landing-page .process-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            #xforensics-landing-page .step-icon-wrapper {
                width: 72px;
                height: 72px;
            }

            #xforensics-landing-page .step-icon-wrapper svg {
                width: 36px;
                height: 36px;
            }

            #xforensics-landing-page .step-number {
                left: 36px;
                width: 28px;
                height: 28px;
                font-size: 12px !important;
            }

            #xforensics-landing-page .expertise {
                padding: 60px 0;
            }

            #xforensics-landing-page .expertise-stats {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            #xforensics-landing-page .expertise-card {
                padding: 32px 24px;
            }
        }

        @media (max-width: 576px) {
            #xforensics-landing-page .container {
                padding: 0 16px !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            #xforensics-landing-page .hero {
                padding: 110px 0 40px;
            }

            #xforensics-landing-page .btn-header-cta {
                align-self: stretch;
                text-align: center;
                width: 100%;
            }

            #xforensics-landing-page .hero-headline {
                font-size: 35.2px !important;
            }

            #xforensics-landing-page .hero-form-card {
                padding: 24px;
            }

            #xforensics-landing-page .sticky-consultation-btn {
                width: calc(100% - 32px);
                justify-content: center;
                border-radius: 40px;
            }

            #xforensics-landing-page .scroll-to-top {
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            #xforensics-landing-page .logo {
                font-size: 24px !important;
            }



            #xforensics-landing-page .trust-badge {
                font-size: 10px !important;
                padding: 3px 10px;
            }

            #xforensics-landing-page .hero-headline {
                font-size: 30.4px !important;
            }

            #xforensics-landing-page .hero-benefits {
                gap: 10px;
            }

            #xforensics-landing-page .hero-benefits li {
                font-size: 15.2px !important;
                text-align: left;
            }

            #xforensics-landing-page .hero-cta {
                width: 100%;
            }

            #xforensics-landing-page .services-grid {
                grid-template-columns: 1fr;
            }

            #xforensics-landing-page .service-card {
                padding: 24px 20px;
            }

            #xforensics-landing-page .service-title {
                font-size: 19.2px !important;
            }

            #xforensics-landing-page .process-grid {
                grid-template-columns: 1fr;
                gap: 60px;
                justify-items: center;
            }

            #xforensics-landing-page .step-icon-wrapper {
                width: 68px;
                height: 68px;
            }

            #xforensics-landing-page .step-icon-wrapper svg {
                width: 34px;
                height: 34px;
            }

            #xforensics-landing-page .step-number {
                left: 50%;
                transform: translateX(-50%);
            }

            #xforensics-landing-page .process {
                text-align: center;
            }

            #xforensics-landing-page .process-step {
                align-items: center;
                text-align: center;
            }

            #xforensics-landing-page .process-footer {
                flex-direction: column;
                gap: 12px;
            }

            #xforensics-landing-page .bullet-separator {
                display: none;
            }

            #xforensics-landing-page .turnaround-time,
            #xforensics-landing-page .rush-service {
                display: block;
            }

            #xforensics-landing-page .expertise-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            #xforensics-landing-page .expertise-card {
                padding: 28px 20px;
            }

            #xforensics-landing-page .expertise-icon {
                width: 56px;
                height: 56px;
                margin-bottom: 20px;
            }

            #xforensics-landing-page .testimonials {
                padding: 60px 0;
            }

            #xforensics-landing-page .testimonials-header {
                grid-template-columns: 1fr;
                align-items: flex-start;
            }

            #xforensics-landing-page .google-rating-summary {
                width: 100%;
                justify-self: stretch;
            }

            #xforensics-landing-page .carousel-track {
                gap: 18px;
            }

            #xforensics-landing-page .carousel-track .google-review-card {
                flex: 0 0 calc((100% - 18px) / 2);
                max-width: calc((100% - 18px) / 2);
            }

            #xforensics-landing-page .google-review-card {
                padding: 24px;
            }

            #xforensics-landing-page .why-choose-us {
                padding: 60px 0;
            }

            #xforensics-landing-page .comparison-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            #xforensics-landing-page .comparison-column {
                padding: 28px 22px;
            }

            #xforensics-landing-page .comparison-column-others {
                display: none;
            }

            #xforensics-landing-page .comparison-column-xforensics {
                transform: none;
            }

            #xforensics-landing-page .contact {
                padding: 60px 0;
            }

            #xforensics-landing-page .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            #xforensics-landing-page .contact-form-wrapper {
                padding: 32px 28px;
            }

            #xforensics-landing-page .contact-info-panel,
            #xforensics-landing-page .next-steps-panel {
                padding: 28px 24px;
            }

            #xforensics-landing-page .faq {
                padding: 60px 0;
            }

            #xforensics-landing-page .faq-question {
                padding: 20px 24px;
                gap: 12px;
            }

            #xforensics-landing-page .faq-icon-wrapper {
                width: 40px;
                height: 40px;
                font-size: 16px !important;
            }

            #xforensics-landing-page .faq-question-text {
                font-size: 15.2px !important;
            }

            #xforensics-landing-page .faq-item.active .faq-answer {
                padding: 0 24px 20px;
            }

            #xforensics-landing-page .cta-section {
                padding: 60px 0;
            }

            #xforensics-landing-page .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            #xforensics-landing-page .btn-cta-primary,
            #xforensics-landing-page .btn-cta-outline {
                width: 100%;
                max-width: 300px;
            }

            #xforensics-landing-page .cta-benefits {
                flex-direction: column;
                gap: 12px;
            }

            #xforensics-landing-page .cta-benefit-separator {
                display: none;
            }

            #xforensics-landing-page .footer {
                padding: 40px 0 24px;
            }

            #xforensics-landing-page .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }

            #xforensics-landing-page .footer-bottom-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            #xforensics-landing-page .footer-legal {
                flex-direction: column;
                gap: 12px;
            }

            #xforensics-landing-page .sticky-consultation-btn {
                bottom: 16px;
                right: 16px;
                padding: 10px 18px;
                font-size: 13.6px !important;
            }

            #xforensics-landing-page .sticky-consultation-btn i {
                font-size: 15.2px !important;
            }

            #xforensics-landing-page .scroll-to-top {
                bottom: 72px;
                right: 16px;
                width: 42px;
                height: 42px;
                font-size: 14.4px !important;
            }

            #xforensics-landing-page .carousel-track .google-review-card {
                flex: 0 0 100%;
                max-width: 100%;
            }

            #xforensics-landing-page .testimonial-carousel {
                gap: 10px;
            }

            #xforensics-landing-page .carousel-nav {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 992px) and (min-width: 501px) {
            #xforensics-landing-page .hero-metric-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 20px;
            }

            #xforensics-landing-page .testimonials-header {
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: flex-start;
            }

            #xforensics-landing-page .google-rating-summary {
                max-width: 320px;
                width: 100%;
                padding: 20px 22px;
                justify-self: end;
            }

            #xforensics-landing-page .testimonial-carousel {
                padding: 0 24px;
            }

            #xforensics-landing-page .carousel-track {
                margin: 24px 5px;
                gap: 20px;
            }

            #xforensics-landing-page .carousel-track .google-review-card {
                flex: 0 0 calc((100% - 20px) / 2);
                max-width: calc((100% - 20px) / 2);
            }

            #xforensics-landing-page .google-review-card {
                padding: 26px 24px;
                min-height: 100%;
            }

            #xforensics-landing-page .trust-feature-grid {
                display: flex;
                flex-direction: column;
                gap: 36px;
                position: relative;
                padding: 10px 0 10px 0;
            }

            #xforensics-landing-page .trust-feature-grid::before {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                left: 50%;
                width: 2px;
                background: linear-gradient(180deg, rgba(114, 0, 2, 0.25), rgba(114, 0, 2, 0.05));
                transform: translateX(-50%);
            }

            #xforensics-landing-page .trust-feature-card {
                width: 80%;
                max-width: 420px;
                box-shadow: 0 18px 45px rgba(46, 1, 8, 0.05);
                border: 1px solid rgba(83, 0, 0, 0.2);
            }

            #xforensics-landing-page .trust-feature-card:nth-child(odd) {
                align-self: flex-start;
                margin-right: auto;
            }

            #xforensics-landing-page .trust-feature-card:nth-child(even) {
                align-self: flex-end;
                margin-left: auto;
            }
        }

        @media (max-width: 400px) {
            #xforensics-landing-page .testimonial-carousel {
                padding: 0 6px;
            }

            #xforensics-landing-page .carousel-track {
                margin: 12px 4px;
                gap: 12px;
            }

            #xforensics-landing-page .google-review-card {
                padding: 20px 18px;
                border-radius: 14px;
                gap: 14px;
            }

            #xforensics-landing-page .review-card-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            #xforensics-landing-page .review-text {
                font-size: 14.4px !important;
                line-height: 1.5;
            }

            #xforensics-landing-page .review-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            #xforensics-landing-page .review-avatar {
                width: 40px;
                height: 40px;
                font-size: 13.6px !important;
            }

            #xforensics-landing-page .service-card-face {
                padding: 24px 18px;
            }

            #xforensics-landing-page .service-tags {
                gap: 6px;
            }

            #xforensics-landing-page .tag {
                font-size: 11.2px !important;
                padding: 5px 10px;
                max-width: 100%;
                white-space: normal;
            }
        }

        /* ========= Theme vars ========= */
        :root {
            --brand: #720002;
            --glass-bg: rgba(17, 25, 40, 0.72);
            --glass-border: rgba(255, 255, 255, 0.10);
            --glass-hover: rgba(255, 255, 255, 0.08);
            --glass-active: rgba(255, 255, 255, 0.16);
            --nav-text: #ffffff;
        }

        /* ========= Mobile overlay nav improvements (≤900px) ========= */
        @media (max-width: 900px) {
            #xforensics-landing-page .nav--open .nav-close-btn {
                display: block;
            }

            /* Fix stacking: header and nav above everything, scrim below nav */
            #xforensics-landing-page .header {
                position: sticky;
                /* Changed from relative */
                top: 44px;
                /* Position it below the topbar */
                z-index: 1000;
            }

            #xforensics-landing-page .topbar {
                z-index: 2800;
            }

            #xforensics-landing-page .mobile-scrim,
            #xforensics-landing-page #mobileScrim {
                position: fixed;
                inset: 0;
                background: radial-gradient(60% 60% at 50% 40%, rgba(0, 0, 0, .45), rgba(0, 0, 0, .6));
                -webkit-backdrop-filter: blur(2px);
                backdrop-filter: blur(2px);
                opacity: 0;
                visibility: hidden;
                transition: opacity .2s ease, visibility .2s ease;
                z-index: 2900;
            }

            #xforensics-landing-page.nav-open .mobile-scrim {
                opacity: 1;
                visibility: visible;
            }

            /* Hide sticky UI under the overlay to prevent overlap */
            #xforensics-landing-page.nav-open .topbar,
            #xforensics-landing-page.nav-open .sticky-consultation-btn,
            #xforensics-landing-page.nav-open .btn-header-cta,
            #xforensics-landing-page.nav-open #scrollToTop {
                opacity: 0;
                pointer-events: none;
            }

            /* Overlay nav container with modern glass look */
            #xforensics-landing-page #primaryNav {
                position: fixed !important;
                inset: 0 !important;
                height: 100dvh !important;
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                /* push content down from top */
                gap: 8px;
                padding:
                    max(18px, env(safe-area-inset-top)) clamp(16px, 6vw, 28px) max(28px, env(safe-area-inset-bottom));
                color: var(--nav-text);
                background:
                    #xforensics-landing-page linear-gradient(180deg, #xforensics-landing-page rgba(255, #xforensics-landing-page 255, #xforensics-landing-page 255, #xforensics-landing-page 0.02), #xforensics-landing-page rgba(255, #xforensics-landing-page 255, #xforensics-landing-page 255, #xforensics-landing-page 0.00)) 0 0/100% 100% no-repeat,
                    var(--glass-bg);
                -webkit-backdrop-filter: blur(16px) saturate(140%);
                backdrop-filter: blur(16px) saturate(140%);
                border: 1px solid var(--glass-border);
                box-shadow:
                    #xforensics-landing-page 0 10px 40px rgba(0, #xforensics-landing-page 0, #xforensics-landing-page 0, #xforensics-landing-page .45),
                    inset 0 0 1px rgba(255, 255, 255, .2);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px) scale(0.98);
                transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
                z-index: 3100;
                /* above scrim */
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            #xforensics-landing-page #primaryNav::before {
                /* subtle gradient stroke on the top edge */
                content: "";
                position: sticky;
                top: 0;
                height: 4px;
                width: 100%;
                background: linear-gradient(90deg, transparent, var(--brand), transparent);
                opacity: .6;
                border-radius: 2px;
                pointer-events: none;
                z-index: 1;
            }

            #xforensics-landing-page #primaryNav.nav--open {
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            /* Make menu items modern, tactile */
            #xforensics-landing-page #primaryNav .nav-link,
            #xforensics-landing-page #primaryNav .dropdown-item {
                display: flex;
                align-items: center;
                gap: 10px;
                width: 100%;
                padding: 14px 16px;
                border-radius: 14px;
                color: #fff;
                text-decoration: none;
                font-weight: 700;
                letter-spacing: 0.02em;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
                border: 1px solid var(--glass-border);
                box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
                text-transform: uppercase;
            }

            #xforensics-landing-page #primaryNav .nav-link:hover,
            #xforensics-landing-page #primaryNav .dropdown-item:hover {
                background: var(--glass-hover);
            }

            #xforensics-landing-page #primaryNav .nav-link:active,
            #xforensics-landing-page #primaryNav .dropdown-item:active {
                background: var(--glass-active);
            }

            /* add a small accent dot before each item */
            #xforensics-landing-page #primaryNav .nav-link::before,
            #xforensics-landing-page #primaryNav .dropdown-item::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0.15));
                opacity: .85;
            }

            /* Dropdown accordion */
            #xforensics-landing-page #primaryNav .nav-dropdown {
                width: 100%;
                margin: 4px 0 2px;
            }

            #xforensics-landing-page #primaryNav .nav-link-dropdown {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            #xforensics-landing-page #primaryNav .nav-link-dropdown .dropdown-chevron {
                transition: transform .2s ease;
            }

            #xforensics-landing-page #primaryNav .nav-dropdown.is-open .dropdown-chevron {
                transform: rotate(-180deg);
            }

            #xforensics-landing-page #primaryNav .dropdown-menu {
                display: none;
                flex-direction: column;
                gap: 8px;
                padding: 8px 0 8px 12px;
                margin-top: 4px;
                border-left: 2px solid rgba(255, 255, 255, 0.14);
            }

            #xforensics-landing-page #primaryNav .nav-dropdown.is-open>.dropdown-menu {
                display: flex;
            }

            #xforensics-landing-page #primaryNav .dropdown-item {
                font-weight: 600;
                text-transform: none;
                font-size: 16.8px !important;
                border-radius: 12px;
            }

            /* Staggered entrance animation for items inside nav */
            @keyframes navItemIn {
                from {
                    transform: translateY(10px);
                    opacity: 0;
                }

                to {
                    transform: none;
                    opacity: 1;
                }
            }

            #xforensics-landing-page #primaryNav.nav--open>a,
            #xforensics-landing-page #primaryNav.nav--open>.nav-dropdown {
                animation: navItemIn .28s both;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(1) {
                animation-delay: .04s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(2) {
                animation-delay: .08s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(3) {
                animation-delay: .12s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(4) {
                animation-delay: .16s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(5) {
                animation-delay: .20s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(6) {
                animation-delay: .24s;
            }

            /* Turn the hamburger into an "X" when open */
            #xforensics-landing-page .mobile-nav-toggle {
                position: relative;
                z-index: 3200;
                /* above nav */
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon,
            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::before,
            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::after {
                content: "";
                display: block;
                width: 22px;
                height: 2px;
                background: #111;
                border-radius: 1px;
                transition: transform .2s ease, opacity .2s ease, background .2s ease;
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon {
                position: relative;
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::before {
                position: absolute;
                top: -6px;
                left: 0;
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::after {
                position: absolute;
                top: 6px;
                left: 0;
            }

            #xforensics-landing-page .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon {
                background: transparent;
            }

            #xforensics-landing-page .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon::before {
                transform: translateY(6px) rotate(45deg);
                background: #fff;
            }

            #xforensics-landing-page .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon::after {
                transform: translateY(-6px) rotate(-45deg);
                background: #fff;
            }
        }

        /* ========= Hero mobile spacing polish (≤900px) ========= */
        @media (max-width: 900px) {
            #xforensics-landing-page .hero {
                padding: 120px 0 48px;
            }

            #xforensics-landing-page .hero-headline {
                font-size: clamp(32px, 8vw, 38px) !important;
            }

            #xforensics-landing-page .hero-benefits {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px 12px;
            }

            #xforensics-landing-page .hero-cta {
                width: 100%;
            }
        }

        @media (max-width: 500px) {
            #xforensics-landing-page .hero {
                padding: 110px 0 36px;
            }

            #xforensics-landing-page .hero-benefits {
                grid-template-columns: 1fr;
            }

            #xforensics-landing-page .hero-metric-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 900px) {
            #xforensics-landing-page #primaryNav a.is-active {
                outline: 2px solid rgba(255, 255, 255, 0.22);
                box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08) inset;
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
            }
        }

        /* ========= Global smooth scrolling ========= */
        #xforensics-landing-page {
            scroll-behavior: smooth;
        }

        /* ========= Mobile overlay: bulletproof layering (≤900px) ========= */
        @media (max-width: 900px) {

            /* While nav is open, prevent clicks on the page */
            #xforensics-landing-page.nav-open>*:not(#primaryNav):not(#mobileScrim):not(.header):not(.mobile-scrim) {
                pointer-events: none;
            }

            /* Ensure header is a high-level stacking context */
            #xforensics-landing-page .header {
                position: fixed;
                z-index: 2147483630;
                /* below scrim/nav, above content */
            }

            /* Scrim sits above content, below the nav */
            #xforensics-landing-page .mobile-scrim,
            #xforensics-landing-page #mobileScrim {
                position: fixed;
                inset: 0;
                background: radial-gradient(60% 60% at 50% 40%, rgba(0, 0, 0, .45), rgba(0, 0, 0, .6));
                -webkit-backdrop-filter: blur(2px);
                backdrop-filter: blur(2px);
                opacity: 0;
                visibility: hidden;
                transition: opacity .2s ease, visibility .2s ease;
                z-index: 2147483631;
            }

            #xforensics-landing-page.nav-open .mobile-scrim {
                opacity: 1;
                visibility: visible;
            }

            /* The overlay nav itself (use ID selector so it works after we portal it to <body><div id="xforensics-landing-page">) */
            #xforensics-landing-page #primaryNav {
                position: fixed !important;
                inset: 0 !important;
                height: 100dvh !important;
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 110px clamp(16px, 6vw, 28px) max(28px, env(safe-area-inset-bottom));
                color: #fff;

                /* Glass morphism background - Red Theme */
                background: linear-gradient(135deg, rgba(114, 0, 2, 0.95), rgba(165, 0, 3, 0.98));
                -webkit-backdrop-filter: blur(16px) saturate(140%);
                backdrop-filter: blur(16px) saturate(140%);
                border: none;
                box-shadow: 0 12px 40px rgba(0, 0, 0, .45);

                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px) scale(.98);
                transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
                z-index: 2147483632;
                /* highest */
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            #xforensics-landing-page #primaryNav.nav--open {
                opacity: 1;
                visibility: visible;
                transform: none;
            }

            /* De-activate any high z-index/transform in hero when menu is open (prevents bleed-over) */
            #xforensics-landing-page.nav-open .hero,
            #xforensics-landing-page.nav-open .hero-left,
            #xforensics-landing-page.nav-open .hero-right,
            #xforensics-landing-page.nav-open .hero-background,
            #xforensics-landing-page.nav-open .hero-overlay {
                z-index: auto !important;
                transform: none !important;
            }

            /* Hide sticky bits under overlay */
            #xforensics-landing-page.nav-open .topbar,
            #xforensics-landing-page.nav-open .sticky-consultation-btn,
            #xforensics-landing-page.nav-open .btn-header-cta,
            #xforensics-landing-page.nav-open #scrollToTop {
                opacity: 0;
                pointer-events: none;
            }

            /* Mobile nav item styling (modernized) */
            #xforensics-landing-page #primaryNav .nav-link,
            #xforensics-landing-page #primaryNav .dropdown-item {
                display: flex;
                align-items: center;
                gap: 10px;
                width: 100%;
                padding: 14px 16px;
                border-radius: 14px;
                color: #fff;
                text-decoration: none;
                font-weight: 700;
                letter-spacing: .02em;
                text-transform: uppercase;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                box-shadow: none;
            }

            #xforensics-landing-page #primaryNav .nav-link:hover,
            #xforensics-landing-page #primaryNav .dropdown-item:hover {
                background: rgba(255, 255, 255, .08);
            }

            #xforensics-landing-page #primaryNav .nav-link:active,
            #xforensics-landing-page #primaryNav .dropdown-item:active {
                background: rgba(255, 255, 255, .16);
            }

            #xforensics-landing-page #primaryNav .nav-link::before,
            #xforensics-landing-page #primaryNav .dropdown-item::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, .15));
                opacity: .85;
            }

            /* Dropdown accordion */
            #xforensics-landing-page #primaryNav .nav-dropdown {
                width: 100%;
                margin: 4px 0 2px;
            }

            #xforensics-landing-page #primaryNav .nav-link-dropdown {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            #xforensics-landing-page #primaryNav .dropdown-menu {
                display: none;
                flex-direction: column;
                gap: 8px;
                padding: 8px 0 8px 12px;
                margin-top: 4px;
                border-left: 2px solid rgba(255, 255, 255, .14);
            }

            #xforensics-landing-page #primaryNav .nav-dropdown.is-open>.dropdown-menu {
                display: flex;
            }

            #xforensics-landing-page #primaryNav .nav-link-dropdown .dropdown-chevron {
                transition: transform .2s ease;
            }

            #xforensics-landing-page #primaryNav .nav-dropdown.is-open .dropdown-chevron {
                transform: rotate(-180deg);
            }

            /* Staggered entrance */
            @keyframes navItemIn {
                from {
                    transform: translateY(10px);
                    opacity: 0;
                }

                to {
                    transform: none;
                    opacity: 1;
                }
            }

            #xforensics-landing-page #primaryNav.nav--open>a,
            #xforensics-landing-page #primaryNav.nav--open>.nav-dropdown {
                animation: navItemIn .28s both;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(1) {
                animation-delay: .04s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(2) {
                animation-delay: .08s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(3) {
                animation-delay: .12s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(4) {
                animation-delay: .16s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(5) {
                animation-delay: .20s;
            }

            #xforensics-landing-page #primaryNav.nav--open>*:nth-child(6) {
                animation-delay: .24s;
            }

            /* Hamburger morph to X */
            #xforensics-landing-page .mobile-nav-toggle {
                position: relative;
                z-index: 2147483633;
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon,
            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::before,
            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::after {
                content: "";
                display: block;
                width: 22px;
                height: 2px;
                background: #111;
                border-radius: 1px;
                transition: transform .2s ease, opacity .2s ease, background .2s ease;
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon {
                position: relative;
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::before {
                position: absolute;
                top: -6px;
                left: 0;
            }

            #xforensics-landing-page .mobile-nav-toggle .mobile-nav-icon::after {
                position: absolute;
                top: 6px;
                left: 0;
            }

            #xforensics-landing-page .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon {
                background: transparent;
            }

            #xforensics-landing-page .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon::before {
                transform: translateY(6px) rotate(45deg);
                background: #fff;
            }

            #xforensics-landing-page .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-icon::after {
                transform: translateY(-6px) rotate(-45deg);
                background: #fff;
            }

            /* Active link highlight */
            #xforensics-landing-page #primaryNav a.is-active {
                outline: 2px solid rgba(255, 255, 255, .22);
                box-shadow: 0 0 0 2px rgba(255, 255, 255, .08) inset;
                background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
            }
        }


        /* ========= Refined mobile nav glass sheet (≤900px) ========= */
        @media (max-width: 900px) {
            #xforensics-landing-page.nav-open {
                overflow: hidden;
            }

            #xforensics-landing-page.nav-open .topbar,
            #xforensics-landing-page.nav-open .btn-header-cta {
                opacity: 1 !important;
                pointer-events: auto !important;
            }

            #xforensics-landing-page #mobileScrim {
                position: fixed;
                inset: 0;
                background: radial-gradient(circle at 30% 20%, rgba(143, 0, 20, 0.35), rgba(4, 3, 10, 0.75));
                -webkit-backdrop-filter: blur(4px);
                backdrop-filter: blur(4px);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.25s ease, visibility 0.25s ease;
                z-index: 2147483630;
            }

            #xforensics-landing-page.nav-open #mobileScrim {
                opacity: 1;
                visibility: visible;
            }

            #xforensics-landing-page #primaryNav {
                position: fixed !important;
                top: var(--nav-sheet-top, calc(env(safe-area-inset-top) + 88px));
                left: var(--nav-sheet-left, 0px);
                right: var(--nav-sheet-right, auto);
                width: var(--nav-sheet-width, 100vw);
                max-height: min(90dvh, 640px);
                padding: 18px 20px 20px;
                border-radius: 0 0 28px 28px;
                background: linear-gradient(140deg, rgba(122, 0, 14, 0.92), rgba(24, 3, 12, 0.95));
                color: #fff;
                border: 1px solid rgba(255, 255, 255, 0.18);
                box-shadow:
                    #xforensics-landing-page 0 18px 38px rgba(5, #xforensics-landing-page 3, #xforensics-landing-page 10, #xforensics-landing-page 0.55),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
                -webkit-backdrop-filter: blur(20px) saturate(160%);
                backdrop-filter: blur(20px) saturate(160%);
                display: flex;
                flex-direction: column;
                gap: 10px;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform-origin: top center;
                transform: translateY(-12px) scale(0.95);
                transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
                overflow-y: auto;
                z-index: 2147483631;
            }

            #xforensics-landing-page #primaryNav.nav--open {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0) scale(1);
            }

            #xforensics-landing-page #primaryNav::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: inherit;
                background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.25), transparent 60%);
                pointer-events: none;
                z-index: 0;
            }

            #xforensics-landing-page #primaryNav>* {
                position: relative;
                z-index: 1;
            }

            #xforensics-landing-page .nav-close-btn {
                display: inline-flex;
                align-self: flex-end;
                width: 38px;
                height: 38px;
                border-radius: 12px;
                border: 1px solid rgba(255, 255, 255, 0.25);
                background: rgba(255, 255, 255, 0.1);
                color: #fff;
                font-size: 22.4px !important;
                line-height: 1;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                transition: background 0.2s ease, transform 0.2s ease;
            }

            #xforensics-landing-page .nav-close-btn:hover {
                background: rgba(255, 255, 255, 0.18);
                transform: translateY(-1px);
            }

            #xforensics-landing-page #primaryNav .nav-link,
            #xforensics-landing-page #primaryNav .dropdown-item {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
                width: 100%;
                padding: 14px 16px;
                border-radius: 16px;
                border: 1px solid rgba(255, 255, 255, 0.16);
                background: rgba(255, 255, 255, 0.04);
                color: #fff;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.12em;
                text-decoration: none;
                font-size: 14.4px !important;
                transition: border-color 0.2s ease, background 0.2s ease;
            }

            #xforensics-landing-page #primaryNav .nav-link::before,
            #xforensics-landing-page #primaryNav .dropdown-item::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: radial-gradient(circle, #fff, rgba(255, 255, 255, 0.25));
                margin-right: 10px;
                flex-shrink: 0;
            }

            #xforensics-landing-page #primaryNav .nav-link.nav-link-dropdown::before {
                margin-right: 12px;
            }

            #xforensics-landing-page #primaryNav .nav-link:hover,
            #xforensics-landing-page #primaryNav .dropdown-item:hover {
                border-color: rgba(255, 255, 255, 0.4);
                background: rgba(255, 255, 255, 0.14);
            }

            #xforensics-landing-page #primaryNav .nav-dropdown {
                width: 100%;
            }

            #xforensics-landing-page #primaryNav .dropdown-chevron {
                transition: transform 0.25s ease;
                margin-left: auto;
            }

            #xforensics-landing-page #primaryNav .nav-dropdown.is-open .dropdown-chevron {
                transform: rotate(180deg);
            }

            #xforensics-landing-page #primaryNav .dropdown-menu {
                position: static;
                display: none;
                flex-direction: column;
                gap: 8px;
                padding: 16px 18px;
                margin: 12px auto 0;
                width: calc(100% - 32px);
                border-radius: 18px;
                border: 1px solid rgba(255, 255, 255, 0.18);
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(200, 200, 200, 0.1));
                box-shadow:
                    #xforensics-landing-page 0 12px 28px rgba(6, #xforensics-landing-page 6, #xforensics-landing-page 10, #xforensics-landing-page 0.45),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
                -webkit-backdrop-filter: blur(18px) saturate(140%);
                backdrop-filter: blur(18px) saturate(140%);
            }

            #xforensics-landing-page #primaryNav .nav-dropdown.is-open>.dropdown-menu {
                display: flex;
            }

            #xforensics-landing-page #primaryNav .dropdown-item {
                text-transform: none;
                font-size: 13.6px !important;
                letter-spacing: 0.05em;
                color: #ffffff;
                background: rgba(15, 15, 20, 0.15);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            #xforensics-landing-page #primaryNav .nav-link.is-active {
                border-color: rgba(255, 255, 255, 0.55);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
            }
        }
    
