/* our-team.html */
/* ===== 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;
        }

        /* ===== OUR TEAM PAGE STYLES ===== */

        /* --- Hero Section --- */
        .ob-hero {
            position: relative;
            padding: 10rem 0 6rem;
            background: var(--primary, #0a1628);
            overflow: hidden;
        }
        .ob-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 70% 20%, rgba(200, 168, 78, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse 50% 80% at 10% 80%, rgba(200, 168, 78, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }
        .ob-hero::after {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            border: 1px solid rgba(200, 168, 78, 0.08);
            border-radius: 50%;
            pointer-events: none;
            animation: heroOrbit 30s linear infinite;
        }
        @keyframes heroOrbit {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .ob-hero .container {
            position: relative;
            z-index: 2;
        }
        .ob-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(200, 168, 78, 0.1);
            border: 1px solid rgba(200, 168, 78, 0.25);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent, #c8a84e);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease both;
        }
        .ob-hero-badge svg {
            width: 14px;
            height: 14px;
        }
        .ob-hero-title {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 900;
            line-height: 1.05;
            color: #fff;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.1s both;
        }
        .ob-hero-title em {
            font-style: italic;
            color: var(--accent, #c8a84e);
        }
        .ob-hero-sub {
            font-size: 1.25rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.6);
            max-width: 600px;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        .ob-hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s both;
        }
        .ob-hero-actions .btn-outline {
            background-color: transparent !important;
            border: 2px solid #fff !important;
            color: #fff !important;
        }
        .ob-hero-actions .btn-accent:hover {
            background-color: #ea580c !important;
            border-color: #ea580c !important;
            color: #fff !important;
        }
        .ob-hero-actions .btn-outline:hover {
            background-color: #62BFCA !important;
            border-color: #62BFCA !important;
            color: #fff !important;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- Section Badge (reusable) --- */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(200, 168, 78, 0.08);
            border: 1px solid rgba(200, 168, 78, 0.2);
            border-radius: 100px;
            font-size: 0.6875rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent, #c8a84e);
            margin-bottom: 1.25rem;
        }
        .section-badge.light {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.8);
        }
        .section-badge svg {
            width: 12px;
            height: 12px;
            flex-shrink: 0;
        }

        /* --- Insight & Expertise Section --- */
        .ob-about {
            padding: 3.125rem 0;
            background: #fff;
            position: relative;
        }
        .ob-expertise-quote {
            position: relative;
            margin: 0 0 2rem 0;
            padding: 1.75rem 2rem 1.75rem 2rem;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.04) 0%, rgba(200, 168, 78, 0.06) 100%);
            border-left: 4px solid #0a1628;
            border-radius: 0 16px 16px 0;
            box-shadow: 0 4px 20px rgba(10, 22, 40, 0.04);
        }
        .ob-expertise-quote p {
            font-family: 'Archivo', sans-serif;
            font-size: 1.1875rem;
            font-weight: 700;
            font-style: italic;
            line-height: 1.7;
            color: var(--primary, #0a1628);
            margin: 0 !important;
        }
        .ob-expertise-quote::before {
            content: '\201C';
            position: absolute;
            top: -0.25rem;
            left: 0.75rem;
            font-family: 'Archivo', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: rgba(10, 22, 40, 0.15);
            line-height: 1;
        }
        .ob-about-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 5rem;
            align-items: center;
        }
        .ob-about-content h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            font-weight: 900;
            line-height: 1.15;
            color: var(--primary, #0a1628);
            margin-bottom: 2rem;
        }
        .ob-about-content h2 em {
            font-style: italic;
            color: var(--accent, #c8a84e);
        }
        .ob-about-content p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: var(--gray-600, #4b5563);
            margin-bottom: 1.25rem;
        }
        /* Right column decorative element */
        .ob-about-decoration {
            position: relative;
            min-height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ob-about-decoration .deco-ring {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(98, 191, 202, 0.15);
            animation: decoSpin 50s linear infinite;
        }
        .ob-about-decoration .deco-ring-1 {
            width: 320px;
            height: 320px;
            border-color: rgba(98, 191, 202, 0.25);
        }
        .ob-about-decoration .deco-ring-2 {
            width: 240px;
            height: 240px;
            border-color: rgba(98, 191, 202, 0.35);
            animation-direction: reverse;
            animation-duration: 35s;
        }
        .ob-about-decoration .deco-ring-3 {
            width: 160px;
            height: 160px;
            border-color: rgba(98, 191, 202, 0.45);
            animation-duration: 25s;
        }
        .ob-about-decoration .deco-shield {
            position: relative;
            z-index: 2;
            width: 80px;
            height: 80px;
            background: var(--primary, #0a1628);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent, #c8a84e);
            box-shadow: 0 12px 40px rgba(10, 22, 40, 0.2);
        }
        @keyframes decoSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* --- Ron Cornforth Profile Section --- */
        .team-profile {
            padding: 7rem 0;
            background: var(--gray-50, #f9fafb);
            position: relative;
            overflow: hidden;
        }
        .team-profile::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(10, 22, 40, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .team-profile::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(200, 168, 78, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .team-profile-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .team-profile-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
        }
        .team-profile-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0a1628, var(--accent, #c8a84e));
            z-index: 2;
        }
        .team-profile-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            min-height: 450px;
            max-height: 560px;
        }
        .team-profile-image .image-accent {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.4) 0%, transparent 100%);
            z-index: 1;
        }
        .team-profile-content {
            position: relative;
        }
        .team-profile-content .profile-role-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1.25rem;
            background: rgba(10, 22, 40, 0.06);
            border: 1px solid rgba(10, 22, 40, 0.12);
            border-radius: 100px;
            font-size: 0.6875rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--primary, #0a1628);
            margin-bottom: 1rem;
        }
        .team-profile-content h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 900;
            line-height: 1.1;
            color: var(--primary, #0a1628);
            margin-bottom: 0.5rem;
        }
        .team-profile-content .profile-subtitle {
            font-family: 'Archivo', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent, #c8a84e);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .team-profile-content .profile-subtitle::before {
            content: '';
            width: 32px;
            height: 2px;
            background: var(--accent, #c8a84e);
            flex-shrink: 0;
        }
        .team-profile-content .profile-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0a1628, var(--accent, #c8a84e));
            border-radius: 2px;
            margin-bottom: 2rem;
        }
        .team-profile-content p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: var(--gray-600, #4b5563);
            margin-bottom: 1.25rem;
        }
        .team-profile-content .profile-interests {
            margin-top: 2rem;
            padding: 1.25rem 1.5rem;
            background: rgba(10, 22, 40, 0.04);
            border-radius: 16px;
            border: 1px solid rgba(10, 22, 40, 0.06);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .team-profile-content .profile-interests .interests-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--primary, #0a1628);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent, #c8a84e);
            flex-shrink: 0;
        }
        .team-profile-content .profile-interests p {
            margin: 0;
            font-size: 0.9375rem;
            font-style: italic;
            color: var(--gray-600, #4b5563);
        }

        /* --- Security Banner --- */
        .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-1551434678-e076c223a692?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 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 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;
        }

        /* --- Values Section (Skilled Investigators) --- */
        .ob-values {
            padding: 7rem 0;
            background: #fff;
        }
        .ob-values h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            font-weight: 900;
            line-height: 1.15;
            color: var(--primary, #0a1628);
        }
        .ob-values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3.5rem;
        }
        .ob-value-card {
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid var(--gray-200, #e5e7eb);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .ob-value-card:hover {
            border-color: rgba(10, 22, 40, 0.3);
            box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1), 0 20px 60px rgba(10, 22, 40, 0.06);
            transform: translateY(-4px);
        }
        .ob-value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0a1628, var(--accent, #c8a84e));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .ob-value-card:hover::before {
            opacity: 1;
        }
        .ob-value-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(10, 22, 40, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary, #0a1628);
        }
        .ob-value-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--primary, #0a1628);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .ob-value-card p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--gray-600, #4b5563);
        }

        /* --- Intelligence Advantage Section --- */
        .ob-intel {
            padding: 7rem 0;
            background: var(--primary, #0a1628);
            position: relative;
            overflow: hidden;
        }
        .ob-intel::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200, 168, 78, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200, 168, 78, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .ob-intel-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            position: relative;
            z-index: 2;
        }
        .ob-intel-header h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            font-weight: 900;
            color: #fff;
            margin-bottom: 1.25rem;
            line-height: 1.15;
        }
        .ob-intel-header h2 em {
            font-style: italic;
            color: var(--accent, #c8a84e);
        }
        .ob-intel-header p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.55);
        }
        .ob-intel-big-stat {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        .ob-intel-big-stat .big-number {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 900;
            color: var(--accent, #c8a84e);
            line-height: 1;
            opacity: 0.15;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
            pointer-events: none;
        }
        .ob-intel-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        .ob-intel-card {
            padding: 2.5rem;
            border-radius: 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .ob-intel-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(200, 168, 78, 0.2);
            transform: translateY(-4px);
        }
        .ob-intel-card .intel-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(200, 168, 78, 0.1);
            border: 1px solid rgba(200, 168, 78, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--accent, #c8a84e);
        }
        .ob-intel-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.125rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .ob-intel-card p {
            font-size: 0.9375rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.5);
        }

        /* --- More About Section --- */
        .ob-more {
            padding: 7rem 0;
            background: var(--gray-50, #f9fafb);
        }
        .ob-more-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .ob-more-header h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            font-weight: 900;
            color: var(--primary, #0a1628);
            line-height: 1.15;
        }
        .ob-more-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .ob-more-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            min-height: 320px;
            display: flex;
            align-items: flex-end;
            text-decoration: none;
            transition: transform 0.4s ease;
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
        }
        .ob-more-card:hover {
            transform: translateY(-6px);
        }
        .ob-more-card .card-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            z-index: 0;
            display: block !important;
        }
        .ob-more-card:hover .card-bg-img {
            transform: scale(1.05);
        }
        .ob-more-card .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.55) 100%) !important;
            z-index: 1;
        }
        .ob-more-card .card-inner {
            position: relative;
            z-index: 2;
            padding: 2rem;
            width: 100%;
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }
        .ob-more-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: #fff !important;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .ob-more-card p {
            font-size: 0.875rem;
            color: #ffffff !important;
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }
        .ob-more-card .card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent, #c8a84e);
            text-decoration: none;
            transition: gap 0.3s ease;
        }
        .ob-more-card:hover .card-link {
            gap: 0.85rem;
        }

        /* --- Direct Consultation Section --- */
        .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;
        }

        /* --- Legal Team Section --- */
        .legal-team-section {
            position: relative;
            padding: 7rem 0;
            background: #1a2d4a;
            overflow: hidden;
        }
        .legal-team-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 20% 30%, rgba(98, 191, 202, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 50% 60% at 80% 70%, rgba(200, 168, 78, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        .legal-team-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .legal-team-content .section-badge.legal-badge {
            background: rgba(98, 191, 202, 0.12);
            border-color: rgba(98, 191, 202, 0.3);
            color: #62BFCA;
        }
        .legal-team-content h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        .legal-team-content h2 .accent-text {
            color: #62BFCA;
        }
        .legal-team-content > p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1.5rem;
        }
        .legal-team-content .legal-subheading {
            font-family: 'Archivo', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
        }
        .legal-team-content .legal-body {
            font-size: 1rem;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 1.5rem;
        }
        .legal-team-content .legal-website {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9375rem;
            font-weight: 700;
            color: #62BFCA;
            text-decoration: none;
            margin-bottom: 2.5rem;
            transition: color 0.3s ease, gap 0.3s ease;
        }
        .legal-team-content .legal-website:hover {
            color: var(--accent, #c8a84e);
            gap: 0.75rem;
        }
        .legal-certs-title {
            font-family: 'Archivo', sans-serif;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 1.25rem;
        }
        .legal-certs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }
        .legal-cert-item {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: default;
        }
        .legal-cert-item:hover {
            background: rgba(98, 191, 202, 0.1);
            border-color: rgba(98, 191, 202, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(98, 191, 202, 0.15);
        }
        .legal-cert-check {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: rgba(98, 191, 202, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .legal-cert-check svg {
            width: 14px;
            height: 14px;
            color: #62BFCA;
        }
        .legal-cert-text h4 {
            font-family: 'Archivo', sans-serif;
            font-size: 0.875rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.25rem;
            line-height: 1.3;
        }
        .legal-cert-text p {
            font-size: 0.8125rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.4);
            margin: 0;
        }
        .legal-cta-row {
            margin-top: 2.5rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .legal-cta-row .btn-legal {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.1rem 2.5rem;
            background: #62BFCA;
            color: #fff;
            font-family: 'Archivo', sans-serif;
            font-size: 0.8125rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.35s ease;
            box-shadow: 0 4px 20px rgba(98, 191, 202, 0.25);
        }
        .legal-cta-row .btn-legal:hover {
            background: var(--accent, #c8a84e);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(200, 168, 78, 0.3);
        }
        .legal-cta-row .btn-legal svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .legal-cta-row .btn-legal:hover svg {
            transform: translateX(4px);
        }
        .legal-cta-disclaimer {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.35);
        }
        .legal-cta-disclaimer svg {
            display: inline;
            vertical-align: middle;
            margin-right: 0.25rem;
        }

        /* Legal image column */
        .legal-team-visual {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }
        .legal-team-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 500px;
            border-radius: 24px;
        }
        .legal-team-visual .legal-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 50%);
            border-radius: 24px;
        }
        .legal-sra-badge {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: #fff;
            border-radius: 16px;
            padding: 1.25rem 1.75rem;
            box-shadow: 0 12px 40px rgba(10, 22, 40, 0.25);
            text-align: center;
            z-index: 3;
        }
        .legal-sra-badge .sra-title {
            font-family: 'Archivo', sans-serif;
            font-size: 1.75rem;
            font-weight: 900;
            color: #62BFCA;
            letter-spacing: 0.05em;
            line-height: 1;
            margin-bottom: 0.25rem;
        }
        .legal-sra-badge .sra-label {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--gray-600, #4b5563);
            letter-spacing: 0.03em;
        }

        /* --- Responsive --- */
        @media (max-width: 900px) {
            .legal-team-grid { grid-template-columns: 1fr; gap: 3rem; }
            .legal-certs-grid { grid-template-columns: 1fr; }
            .ob-hero { padding: 8rem 0 4rem; }
            .ob-about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .ob-about-decoration { display: none; }
            .team-profile-grid { grid-template-columns: 1fr; gap: 3rem; }
            .ob-cobra-content { grid-template-columns: 1fr; gap: 2rem; }
            .ob-cobra-text { padding: 3rem 0 0; }
            .ob-values-grid { grid-template-columns: 1fr; }
            .ob-intel-cards { grid-template-columns: 1fr; }
            .ob-more-grid { grid-template-columns: 1fr; }
            .ob-more-card { min-height: 260px; }
            .consultation-title { font-size: 2.5rem; }
            .consultation-stats { flex-direction: column; gap: 2rem; }
        }
        @media (max-width: 600px) {
            .ob-hero { padding: 7rem 0 3rem; }
            .ob-about-content { padding-right: 0.5rem; }
            .ob-cobra-card { padding: 2rem; }
            .ob-value-card { padding: 2rem; }
            .ob-intel-big-stat .big-number { font-size: 2.5rem; }
            .team-profile-image img { min-height: 320px; max-height: 400px; }
        }

        /* Entrance animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ===== FIELD OFFICERS SECTION ===== */
        .field-officers {
            position: relative;
            padding: 7rem 0 6rem;
            background: var(--primary, #0a1628);
            overflow: hidden;
        }
        .field-officers::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 90% 50% at 50% 50%, rgba(98, 191, 202, 0.06) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 80% 30%, rgba(200, 168, 78, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        /* Subtle grid overlay */
        .field-officers::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(98, 191, 202, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(98, 191, 202, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
            -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
        }

        .fo-inner {
            position: relative;
            z-index: 2;
        }
        .fo-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        .fo-header h2 {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 900;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        .fo-header h2 em {
            font-style: italic;
            color: var(--accent, #c8a84e);
        }
        .fo-header p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: rgba(255,255,255,0.55);
        }

        /* Map container */
        .fo-map-wrap {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }
        .fo-map-svg-container {
            position: relative;
            width: 100%;
            aspect-ratio: 2 / 1;
        }
        .fo-map-svg-container svg {
            width: 100%;
            height: 100%;
        }
        /* World map land fill */
        .fo-map-land {
            fill: rgba(98, 191, 202, 0.08);
            stroke: rgba(98, 191, 202, 0.18);
            stroke-width: 0.3;
            transition: fill 0.5s ease;
        }
        /* Hotspot pulse animation */
        @keyframes foPulse {
            0% { r: 3; opacity: 0.9; }
            50% { r: 7; opacity: 0.3; }
            100% { r: 3; opacity: 0.9; }
        }
        @keyframes foPulseRing {
            0% { r: 4; opacity: 0.6; }
            100% { r: 18; opacity: 0; }
        }
        @keyframes foFadeInDot {
            from { opacity: 0; transform: scale(0); }
            to { opacity: 1; transform: scale(1); }
        }
        .fo-hotspot-ring {
            fill: none;
            stroke: var(--accent, #c8a84e);
            stroke-width: 1;
            animation: foPulseRing 2.5s ease-out infinite;
        }
        .fo-hotspot-glow {
            fill: var(--accent, #c8a84e);
            animation: foPulse 2.5s ease-in-out infinite;
        }
        .fo-hotspot-core {
            fill: #fff;
            r: 2.5;
            filter: drop-shadow(0 0 4px rgba(200, 168, 78, 0.6));
        }
        .fo-hotspot-group {
            opacity: 0;
            animation: foFadeInDot 0.6s ease forwards;
        }

        /* Connection lines between hotspots */
        .fo-connection-line {
            stroke: rgba(200, 168, 78, 0.1);
            stroke-width: 0.5;
            fill: none;
            stroke-dasharray: 4 4;
            animation: foDash 20s linear infinite;
        }
        @keyframes foDash {
            from { stroke-dashoffset: 0; }
            to { stroke-dashoffset: -100; }
        }

        /* Scanning sweep line */
        .fo-scan-line {
            animation: foScanMove 8s ease-in-out infinite;
        }
        @keyframes foScanMove {
            0% { transform: translateX(-100%); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateX(100%); opacity: 0; }
        }

        /* Stat pills floating on map */
        .fo-stat-pills {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        .fo-stat-pill {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1.75rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 100px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all 0.35s ease;
        }
        .fo-stat-pill:hover {
            background: rgba(200, 168, 78, 0.08);
            border-color: rgba(200, 168, 78, 0.25);
            transform: translateY(-2px);
        }
        .fo-stat-pill-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(200, 168, 78, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .fo-stat-pill-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--accent, #c8a84e);
            fill: none;
            stroke-width: 2;
        }
        .fo-stat-pill-text {
            display: flex;
            flex-direction: column;
        }
        .fo-stat-pill-value {
            font-family: 'Archivo', sans-serif;
            font-size: 1.25rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
        }
        .fo-stat-pill-label {
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .field-officers { padding: 5rem 0 4rem; }
            .fo-stat-pills { gap: 0.75rem; }
            .fo-stat-pill { padding: 0.75rem 1.25rem; }
            .fo-stat-pill-value { font-size: 1.1rem; }
        }
        @media (max-width: 480px) {
            .fo-stat-pills { flex-direction: column; align-items: center; }
            .fo-stat-pill { width: 100%; max-width: 280px; }
        }