        /* WordPress Theme Overrides REMOVED for cleanup */
        /* See Elementor defaults */

        /* 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 100px;
            /* Increased bottom padding */
            min-height: 100vh;
            /* Add this line to ensure full viewport height */
            overflow: hidden;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        #xforensics-landing-page .hero-background {
            position: absolute;
            inset: 0;
            background: #d9ccac;
            /* Fallback color */
            z-index: 0;
        }

        #xforensics-landing-page .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            inset: 0;
            filter: brightness(1.05);
        }

        #xforensics-landing-page .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right,
                    rgba(217, 204, 172, 0.8) 0%,
                    rgba(224, 209, 172, 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: 30px;
            /* Reduced from 50px to 30px */
            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-block;
            /* Changed from inline-flex to allow text wrap flow */
            width: fit-content;
            position: relative;
        }

        #xforensics-landing-page .hero-eyebrow svg {
            width: 18px;
            height: 18px;
            margin-left: 6px;
            color: inherit;
            display: inline-block;
            vertical-align: -3px;
            /* visual alignment tweak for inline flow */
        }

        #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: -10px 0 0 0;
            /* Adjusted to be closer to subtitle */
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            position: relative;
            /* Ensure not sticky */
        }

        #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: 20px 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);
        }


        @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;
        }

        @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 - FULL WIDTH */
        #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 .container {
            max-width: 100% !important;
            width: 100% !important;
            padding: 0 20px !important;
        }

        #xforensics-landing-page .testimonials-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        #xforensics-landing-page .google-rating-summary {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 400px;
            margin-top: 20px;
        }

        #xforensics-landing-page .testimonial-carousel {
            position: relative;
            width: 100vw;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 20px;
            padding: 0 20px;
        }

        #xforensics-landing-page .carousel-viewport {
            overflow: hidden;
            width: 100%;
            border-radius: 20px;
        }

        #xforensics-landing-page .carousel-track {
            display: flex;
            gap: 24px;
            margin: 20px 0;
            transition: transform 0.6s ease;
            padding: 0 10px;
        }

        #xforensics-landing-page .carousel-track .google-review-card {
            flex: 0 0 calc((100% - 48px) / 3);
            max-width: calc((100% - 48px) / 3);
            min-width: 280px;
        }

        #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 .video-lazy {
            position: relative;
            cursor: pointer;
            width: 100%;
            height: 100%;
        }

        #xforensics-landing-page .video-lazy img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 0;
        }

        #xforensics-landing-page .video-play-button {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35), transparent 60%);
            color: #ffffff;
            font-size: 32px !important;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        #xforensics-landing-page .video-lazy:hover .video-play-button,
        #xforensics-landing-page .video-lazy:focus-visible .video-play-button {
            background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 60%);
            transform: scale(1.02);
        }

        #xforensics-landing-page .scroll-to-top:active {
            transform: translateY(-2px);
        }

        /* Responsive Design */

        .clickable-icon {
            display: inline-block;
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .clickable-icon:hover {
            color: #007bff;
            /* Change to your preferred hover color */
            transform: scale(1.1);
        }


        /* ========= 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;
        }

        /* Footer Map Styles */
        #xforensics-landing-page .footer-map-preview {
            margin-top: 25px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        #xforensics-landing-page .footer-map-preview:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(114, 0, 2, 0.3);
            border-color: rgba(114, 0, 2, 0.3);
        }

        #xforensics-landing-page .map-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        #xforensics-landing-page .map-placeholder {
            position: relative;
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .footer-map-preview:hover .map-placeholder {
            background: linear-gradient(135deg, #3d2d2d, #2a1a1a);
        }

        #xforensics-landing-page .map-overlay {
            text-align: center;
            color: #ffffff;
            z-index: 2;
            position: relative;
            padding: 15px;
        }

        #xforensics-landing-page .map-overlay i {
            font-size: 28px !important;
            margin-bottom: 8px;
            display: block;
            color: #720002;
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .footer-map-preview:hover .map-overlay i {
            transform: scale(1.1);
            color: #ffffff;
        }

        #xforensics-landing-page .map-overlay span {
            font-size: 15px !important;
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .map-overlay small {
            font-size: 12px !important;
            opacity: 0.8;
            display: block;
            transition: all 0.3s ease;
        }

        #xforensics-landing-page .footer-map-preview:hover .map-overlay span,
        #xforensics-landing-page .footer-map-preview:hover .map-overlay small {
            color: #720002;
        }

        /* FIX YOUTUBE VIDEO SIZE — FULL WIDTH, PERFECT HEIGHT */
        #xforensics-landing-page .video-wrapper {
            position: relative;
            width: 100% !important;
            max-width: 1100px;
            /* adjust if needed */
            margin: 0 auto;
            aspect-ratio: 16/9 !important;
            border-radius: 14px;
            overflow: hidden;
            background: #000;
        }

        #xforensics-landing-page .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
            border: none !important;
        }
