/* background-checks.html */
html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        body {
            overflow-x: hidden;
        }

        /* ===== NEW NAVIGATION STYLES ===== */

        /* Desktop dropdown nav */
        .nav-list {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-list > li {
            position: relative;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--accent, #c8a84e);
        }
        .nav-link .dropdown-arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }
        .nav-list > li:hover .dropdown-arrow,
        .nav-list > li.dropdown-open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Desktop dropdown panel */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--white, #fff);
            border: 1px solid var(--gray-200, #e5e7eb);
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 1000;
        }
        .nav-list > li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .dropdown-menu a:hover {
            background: var(--gray-50, #f9fafb);
            color: var(--accent, #c8a84e);
        }

        /* Hide desktop nav on mobile */
        @media (max-width: 900px) {
            .nav { display: none !important; }
        }

        /* ===== BURGER / MOBILE MENU ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
            gap: 5px;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--primary, #0a1628);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        @media (max-width: 900px) {
            .mobile-toggle { display: flex; }
        }

        /* Burger X animation */
        .mobile-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile overlay menu */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white, #fff);
            z-index: 1060;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-header .logo-title {
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--primary, #0a1628);
        }
        .mobile-menu-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50, #f9fafb);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .mobile-menu-close:hover {
            background: var(--gray-200, #e5e7eb);
        }

        .mobile-menu-body {
            padding: 1rem 0;
            flex: 1;
        }

        /* Mobile nav items */
        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-100, #f3f4f6);
        }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--primary, #0a1628);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: background 0.2s ease;
            cursor: pointer;
        }
        .mobile-nav-link:hover {
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-link .mobile-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            color: var(--gray-400, #9ca3af);
        }
        .mobile-nav-item.open .mobile-nav-link .mobile-arrow {
            transform: rotate(180deg);
            color: var(--accent, #c8a84e);
        }
        .mobile-nav-item.open > .mobile-nav-link {
            color: var(--accent, #c8a84e);
        }

        /* Mobile sub-menu */
        .mobile-sub-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-item.open .mobile-sub-menu {
            max-height: 300px;
        }
        .mobile-sub-menu a {
            display: block;
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600, #4b5563);
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .mobile-sub-menu a:hover {
            color: var(--accent, #c8a84e);
            background: var(--gray-100, #f3f4f6);
        }

        /* Mobile menu divider & secondary links */
        .mobile-menu-divider {
            height: 1px;
            background: var(--gray-200, #e5e7eb);
            margin: 0.75rem 1.5rem;
        }
        .mobile-secondary-links {
            padding: 0.25rem 0;
        }
        .mobile-secondary-links a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--gray-500, #6b7280);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: color 0.2s ease;
        }
        .mobile-secondary-links a:hover {
            color: var(--accent, #c8a84e);
        }

        /* Mobile menu footer CTA */
        .mobile-menu-footer {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-footer .btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--accent, #c8a84e);
            color: var(--white, #fff);
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .mobile-menu-footer .btn:hover {
            background: #d4edf4;
            color: var(--primary, #0a1628);
            transform: translateY(-2px);
        }

        /* Prevent body scroll when menu open */
        body.menu-open {
            overflow: hidden;
        }

        /* ===== END NAV STYLES ===== */


        /* Logo image styles */
        .logo-img {
            height: 110px;
            width: auto;
            display: block;
        }

        /* Mobile logo fix - prevent stretching on mobile devices */
        @media (max-width: 900px) {
            .logo-img {
                height: 70px;
                max-width: 220px;
                object-fit: contain;
            }
        }

        /* Reduce Book a Call button padding to give logo more space */
        .header-actions .btn-primary {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Book a Call button hover override */
        .header-actions .btn-primary:hover {
            background: #d4edf4 !important;
            color: var(--primary, #0a1628) !important;
        }

        /* Hero button overrides */
        .page-hero .btn-accent.btn-lg:hover {
            background: #ea580c !important;
            border-color: #ea580c !important;
        }
        .page-hero .btn-outline.btn-lg {
            background: transparent !important;
            border: 2px solid #ffffff !important;
            color: #ffffff !important;
        }
        .page-hero .btn-outline.btn-lg:hover {
            background: #ea580c !important;
            border-color: #ea580c !important;
            color: #ffffff !important;
        }

        /* Mobile hero bottom padding */
        @media (max-width: 768px) {
            .page-hero {
                padding-bottom: 3rem !important;
            }
        }

/* background-checks.html */
/* Two-column section */
        .bc-expose-section {
            padding: 2rem 0 5rem;
            background: #ffffff;
            overflow: hidden;
        }
        .bc-expose-grid {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 0;
            align-items: stretch;
            max-width: 1100px;
            margin: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(10, 22, 40, 0.15), 0 4px 20px rgba(0,0,0,0.06);
        }
        .bc-expose-image {
            position: relative;
            min-height: 480px;
            overflow: hidden;
        }
        .bc-expose-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }
        .bc-expose-copy {
            padding: 3.5rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(160deg, #0a1628, #0f1f3d 60%, #132a4a);
            color: #fff;
            position: relative;
        }
        .bc-expose-copy::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(200,168,78,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .bc-expose-copy .section-label {
            color: #c8a84e;
            margin-bottom: 0.25rem;
        }
        .bc-expose-copy .section-title {
            color: #ffffff;
            margin-bottom: 1.5rem;
        }
        .bc-expose-copy .section-title .accent-text {
            color: #62BFCA;
        }
        .bc-expose-copy p {
            font-size: 0.975rem;
            line-height: 1.85;
            color: rgba(255,255,255,0.88);
            margin: 0 0 1.5rem;
        }
        .bc-expose-copy p:last-of-type {
            margin-bottom: 0;
        }
        .bc-expose-copy p strong {
            color: #fff;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .bc-expose-grid {
                grid-template-columns: 1fr;
                border-radius: 16px;
                margin: 0 1rem;
            }
            .bc-expose-image {
                min-height: 300px;
            }
            .bc-expose-copy {
                padding: 2.5rem 2rem;
            }
            .bc-expose-section {
                padding: 1.5rem 0 3.5rem;
            }
        }

/* background-checks.html */
.bc-levels-section {
            padding: 5rem 0;
            background: var(--gray-50);
            overflow: hidden;
        }
        .bc-levels-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .bc-levels-header .section-label {
            display: inline-block;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }
        .bc-levels-header h2 {
            color: var(--primary);
            line-height: 1.15;
            margin-bottom: 1rem;
        }
        .bc-levels-header p {
            font-size: 1.05rem;
            color: var(--gray-500);
            line-height: 1.7;
            max-width: 640px;
            margin: 0 auto;
        }
        .bc-levels-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 0;
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(10, 22, 40, 0.10), 0 4px 20px rgba(0,0,0,0.05);
            background: var(--white);
        }
        .bc-levels-image {
            position: relative;
            min-height: 520px;
            overflow: hidden;
        }
        .bc-levels-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .bc-levels-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 22, 40, 0.08) 0%, rgba(10, 22, 40, 0.25) 100%);
            pointer-events: none;
        }
        .bc-levels-content {
            padding: 2.5rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Accordion styles */
        .bc-accordion {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .bc-accordion-item {
            border: 1.5px solid var(--gray-200);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: var(--white);
        }
        .bc-accordion-item:hover {
            border-color: var(--accent);
        }
        .bc-accordion-item.active {
            border-color: var(--accent);
            box-shadow: 0 4px 20px rgba(98, 191, 202, 0.12);
        }
        .bc-accordion-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-display);
            transition: background 0.2s ease;
        }
        .bc-accordion-trigger:hover {
            background: var(--gray-50);
        }
        .bc-accordion-item.active .bc-accordion-trigger {
            background: linear-gradient(135deg, #f0fafb 0%, #f8fafc 100%);
        }
        .bc-accordion-level-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            flex-shrink: 0;
            color: var(--white);
            line-height: 1.1;
        }
        .bc-accordion-level-badge.level-1 {
            background: linear-gradient(135deg, #62BFCA, #4ea8b3);
        }
        .bc-accordion-level-badge.level-2 {
            background: linear-gradient(135deg, #0f172a, #1e293b);
        }
        .bc-accordion-level-badge.level-3 {
            background: linear-gradient(135deg, #c8a84e, #b8963e);
        }
        .bc-accordion-level-badge.level-4 {
            background: linear-gradient(135deg, #62BFCA, #4ea8b3);
        }
        .bc-accordion-level-badge.level-5 {
            background: linear-gradient(135deg, #0f172a, #1e293b);
        }
        .bc-accordion-trigger-text {
            flex: 1;
        }
        .bc-accordion-trigger-text .level-name {
            display: block;
            font-size: 0.975rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.15rem;
        }
        .bc-accordion-trigger-text .level-subtitle {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-400);
        }
        .bc-accordion-price {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--primary);
            white-space: nowrap;
            margin-right: 0.5rem;
        }
        .bc-accordion-item.active .bc-accordion-price {
            color: var(--accent);
        }
        .bc-accordion-arrow {
            width: 20px;
            height: 20px;
            color: var(--gray-400);
            transition: transform 0.3s ease, color 0.3s ease;
            flex-shrink: 0;
        }
        .bc-accordion-item.active .bc-accordion-arrow {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .bc-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bc-accordion-body-inner {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }
        .bc-accordion-divider {
            height: 1px;
            background: var(--gray-200);
            margin-bottom: 1.25rem;
        }
        .bc-accordion-body-inner .bc-intro {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }
        .bc-check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .bc-check-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.82rem;
            line-height: 1.55;
            color: var(--gray-600);
        }
        .bc-check-list li svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--accent);
        }
        .bc-accordion-body-inner .bc-level-note {
            font-size: 0.8rem;
            font-style: italic;
            color: var(--gray-400);
            margin-bottom: 0.75rem;
            line-height: 1.55;
        }
        .bc-numbered-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.5rem;
        }
        .bc-numbered-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.8rem;
            line-height: 1.5;
            color: var(--gray-600);
        }
        .bc-numbered-list li .num {
            font-weight: 700;
            color: var(--accent);
            font-size: 0.75rem;
            min-width: 18px;
            flex-shrink: 0;
        }

        @media (max-width: 900px) {
            .bc-levels-grid {
                grid-template-columns: 1fr;
            }
            .bc-levels-image {
                min-height: 280px;
            }
            .bc-levels-content {
                padding: 2rem 1.5rem;
            }
            .bc-levels-section {
                padding: 3.5rem 0;
            }
            .bc-numbered-list {
                grid-template-columns: 1fr;
            }
            .bc-accordion-trigger {
                padding: 1rem 1.15rem;
                gap: 0.75rem;
            }
            .bc-accordion-price {
                font-size: 0.95rem;
            }
        }

/* background-checks.html */
.ob-cobra-banner {
            position: relative;
            min-height: 720px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--primary, #0a1628);
            padding: 5rem 0;
        }
        .ob-cobra-bg {
            position: absolute;
            inset: 0;
            background:
                url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1400&q=80') center/cover no-repeat;
            opacity: 0.35;
        }
        .ob-cobra-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.4) 40%, rgba(200,168,78,0.15) 100%);
        }
        .ob-cobra-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }
        .ob-cobra-text {
            padding: 4rem 0;
        }
        .ob-cobra-text .section-badge-tech {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 100px;
            font-size: 0.6875rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.25rem;
        }
        .ob-cobra-text .section-badge-tech svg {
            width: 12px;
            height: 12px;
            flex-shrink: 0;
        }
        .ob-cobra-text blockquote {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(1.375rem, 2.5vw, 1.75rem);
            font-style: italic;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
            margin: 0 0 2rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--accent, #c8a84e);
            font-weight: 700;
        }
        .ob-cobra-text p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: rgba(255,255,255,0.6);
            margin-bottom: 2.5rem;
        }
        .ob-cobra-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        .ob-cobra-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(200, 168, 78, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .ob-cobra-card .section-badge-tech {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 100px;
            font-size: 0.6875rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.25rem;
        }
        .ob-cobra-card .section-badge-tech svg {
            width: 12px;
            height: 12px;
            flex-shrink: 0;
        }
        .ob-cobra-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .ob-cobra-card h3 em {
            font-style: italic;
            color: var(--accent, #c8a84e);
        }
        .ob-cobra-card .card-desc {
            font-size: 1rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.6);
            margin-bottom: 2rem;
        }
        .ob-cobra-card .card-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: var(--accent, #c8a84e);
            color: var(--primary, #0a1628);
            font-size: 0.8125rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        .ob-cobra-card .card-cta:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(200, 168, 78, 0.3);
        }
        .ob-cobra-card .card-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .ob-cobra-card .card-cta:hover svg {
            transform: translateX(4px);
        }
        .ob-cobra-card .card-meta {
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.35);
            letter-spacing: 0.03em;
        }
        .ob-cobra-card .card-meta span {
            margin: 0 0.5rem;
        }
        @media (max-width: 900px) {
            .ob-cobra-content { grid-template-columns: 1fr; gap: 2rem; }
            .ob-cobra-text { padding: 3rem 0 0; }
            .ob-cobra-banner { min-height: auto; padding: 4rem 0; }
        }
        @media (max-width: 600px) {
            .ob-cobra-card { padding: 2rem; }
        }

/* background-checks.html */
.bc-clients-section {
            padding: 6rem 0;
            background: #ffffff;
            overflow: hidden;
        }
        .bc-clients-header {
            text-align: center;
            max-width: 740px;
            margin: 0 auto 4rem;
        }
        .bc-clients-header .section-label {
            margin-bottom: 0.75rem;
        }
        .bc-clients-header p {
            font-size: 1.0625rem;
            color: var(--gray-500, #64748b);
            line-height: 1.8;
            margin-top: 1.25rem;
        }
        .bc-clients-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .bc-client-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1.5px solid var(--gray-200, #e5e7eb);
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }
        .bc-client-card:hover {
            border-color: var(--accent, #c8a84e);
            box-shadow: 0 20px 60px rgba(10, 22, 40, 0.10), 0 4px 16px rgba(0,0,0,0.04);
            transform: translateY(-4px);
        }
        .bc-client-card-image {
            position: relative;
            width: 100%;
            padding: 2.5rem 2rem;
            overflow: hidden;
            background: var(--gray-50, #f9fafb);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bc-client-card-image img {
            max-width: 100%;
            max-height: 180px;
            height: auto;
            width: auto;
            object-fit: contain;
        }
        .bc-client-card-body {
            padding: 2rem 2rem 2.5rem;
        }
        .bc-client-card-body h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary, #0a1628);
            line-height: 1.35;
            margin-bottom: 1rem;
        }
        .bc-client-card-body p {
            font-size: 0.9375rem;
            line-height: 1.8;
            color: var(--gray-500, #64748b);
            margin: 0 0 1.25rem;
        }
        .bc-client-card-body p:last-of-type {
            margin-bottom: 1.5rem;
        }
        .bc-client-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--accent, #c8a84e);
            text-decoration: none;
            transition: color 0.25s ease, gap 0.25s ease;
        }
        .bc-client-link:hover {
            color: var(--primary, #0a1628);
            gap: 0.75rem;
        }
        .bc-client-link svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }
        .bc-client-link:hover svg {
            transform: translateX(3px);
        }
        @media (max-width: 768px) {
            .bc-clients-section {
                padding: 4rem 0;
            }
            .bc-clients-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 0.5rem;
            }
            .bc-client-card-body {
                padding: 1.75rem 1.5rem 2rem;
            }
            .bc-clients-header {
                margin-bottom: 3rem;
            }
        }

/* background-checks.html */
.bc-compare-section {
            padding: 6rem 0;
            background: var(--gray-50, #f8f9fa);
            overflow: hidden;
        }
        .bc-compare-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3.5rem;
        }
        .bc-compare-header p {
            font-size: 1.0625rem;
            color: var(--gray-500, #64748b);
            line-height: 1.8;
            margin-top: 1.25rem;
        }
        .bc-compare-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 0;
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(10, 22, 40, 0.12), 0 4px 20px rgba(0,0,0,0.05);
        }

        /* Left image column */
        .bc-compare-visual {
            position: relative;
            min-height: 100%;
            background: linear-gradient(160deg, #0a1628, #0f1f3d 60%, #132a4a);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .bc-compare-visual-img {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .bc-compare-visual-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }
        .bc-compare-visual-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.85) 100%);
            z-index: 1;
        }
        .bc-compare-visual-content {
            position: relative;
            z-index: 2;
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        .bc-compare-visual-content .visual-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.85rem;
            background: rgba(98, 191, 202, 0.15);
            border: 1px solid rgba(98, 191, 202, 0.3);
            border-radius: 100px;
            font-size: 0.625rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #62BFCA;
            margin-bottom: 1.5rem;
            width: fit-content;
        }
        .bc-compare-visual-content .visual-badge svg {
            width: 10px;
            height: 10px;
        }
        .bc-compare-visual-content h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.75rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1.25rem;
        }
        .bc-compare-visual-content h3 span {
            color: #62BFCA;
        }
        .bc-compare-visual-content .visual-text {
            font-size: 0.9375rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.6);
            margin-bottom: 2.5rem;
        }
        .bc-compare-visual-stats {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
        }
        .bc-compare-visual-stat {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .bc-compare-visual-stat .stat-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(98, 191, 202, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .bc-compare-visual-stat .stat-icon svg {
            width: 16px;
            height: 16px;
            color: #62BFCA;
        }
        .bc-compare-visual-stat .stat-text {
            font-size: 0.8125rem;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
            line-height: 1.4;
        }
        .bc-compare-visual-stat .stat-text span {
            display: block;
            font-weight: 500;
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
            margin-top: 0.1rem;
        }

        /* Right form column */
        .bc-compare-form-col {
            background: #fff;
            padding: 3.5rem 3.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .bc-compare-blockquote {
            background: #e8f1f8;
            border: none;
            border-radius: 12px;
            padding: 1.5rem 2rem 1.5rem 2rem;
            position: relative;
            margin: 0 0 2rem;
            font-family: 'Archivo', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.6;
            color: #334155;
        }
        .bc-compare-blockquote::before {
            content: '\201C';
            position: absolute;
            top: 0.5rem;
            left: 1rem;
            font-family: 'Archivo', sans-serif;
            font-size: 3rem;
            line-height: 1;
            color: #94a3b8;
            pointer-events: none;
        }
        .bc-compare-blockquote span {
            display: block;
            padding-top: 1rem;
        }
        .bc-compare-copy {
            font-size: 0.9375rem;
            color: var(--gray-500, #64748b);
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }
        .bc-compare-form-divider {
            height: 1px;
            background: var(--gray-200, #e5e7eb);
            margin: 1.75rem 0;
        }
        .bc-form-heading {
            font-family: 'Archivo', sans-serif;
            font-size: 0.8125rem;
            font-weight: 800;
            color: var(--primary, #0a1628);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
        }

        /* Contact Form */
        .bc-compare-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .bc-form-group {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .bc-form-group.full-width {
            grid-column: 1 / -1;
        }
        .bc-form-group label {
            font-family: 'Archivo', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary, #0a1628);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .bc-form-group label .optional-tag {
            font-weight: 500;
            color: var(--gray-400, #9ca3af);
            text-transform: none;
            font-size: 0.7rem;
            letter-spacing: 0;
        }
        .bc-form-group input {
            width: 100%;
            padding: 0.8rem 1rem;
            font-family: 'Archivo', sans-serif;
            font-size: 0.9rem;
            color: var(--primary, #0a1628);
            background: var(--gray-50, #f9fafb);
            border: 1.5px solid var(--gray-200, #e5e7eb);
            border-radius: 10px;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .bc-form-group input::placeholder {
            color: var(--gray-400, #9ca3af);
        }
        .bc-form-group input:focus {
            border-color: #62BFCA;
            box-shadow: 0 0 0 3px rgba(98, 191, 202, 0.12);
            background: #fff;
        }

        /* GDPR / Consent */
        .bc-gdpr-notice {
            font-size: 0.75rem;
            color: var(--gray-500, #64748b);
            line-height: 1.7;
            margin-bottom: 0.75rem;
        }
        .bc-gdpr-notice a {
            color: #62BFCA;
            text-decoration: underline;
            font-weight: 600;
        }
        .bc-consent-label {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.8125rem;
            color: var(--primary, #0a1628);
            font-weight: 600;
            line-height: 1.5;
            cursor: pointer;
            margin-bottom: 1.75rem;
        }
        .bc-consent-label input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 1px;
            flex-shrink: 0;
            accent-color: #62BFCA;
            cursor: pointer;
        }

        /* Submit */
        .bc-compare-submit {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: var(--accent, #c8a84e);
            color: var(--primary, #0a1628);
            font-family: 'Archivo', sans-serif;
            font-size: 0.8125rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            justify-content: center;
        }
        .bc-compare-submit:hover {
            background: #0a1628;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(10, 22, 40, 0.2);
        }
        .bc-compare-submit svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .bc-compare-submit:hover svg {
            transform: translateX(4px);
        }

        @media (max-width: 900px) {
            .bc-compare-grid {
                grid-template-columns: 1fr;
            }
            .bc-compare-visual {
                min-height: 360px;
            }
            .bc-compare-form-col {
                padding: 2.5rem 2rem;
            }
        }
        @media (max-width: 600px) {
            .bc-compare-form {
                grid-template-columns: 1fr;
            }
            .bc-compare-section {
                padding: 4rem 0;
            }
            .bc-compare-visual-content {
                padding: 2.5rem 1.75rem;
            }
        }

/* background-checks.html */
.direct-consultation-section {
            position: relative;
            padding: 8rem 0;
            background: #0f172a;
            overflow: hidden;
        }
        .consultation-background {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .consultation-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
        }
        .consultation-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(98, 191, 202, 0.2));
            z-index: 1;
        }
        .consultation-pattern {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2362BFCA' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 1;
        }
        .consultation-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .consultation-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(98, 191, 202, 0.2);
            border: 1px solid rgba(98, 191, 202, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
        }
        .consultation-badge svg {
            width: 20px;
            height: 20px;
            stroke: #62BFCA;
        }
        .consultation-badge span {
            color: #62BFCA;
            font-weight: 800;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .consultation-title {
            font-family: 'Archivo', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .consultation-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }
        .consultation-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
        }
        .consultation-stat {
            text-align: center;
        }
        .consultation-stat-number {
            font-family: 'Archivo', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: #62BFCA;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .consultation-stat-label {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        @media (max-width: 900px) {
            .consultation-title { font-size: 2.5rem; }
            .consultation-stats { flex-direction: column; gap: 2rem; }
            .direct-consultation-section { padding: 5rem 0; }
        }