/* ===== 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 ===== */

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

        /* 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;
        }

        /* ===== OUR BUSINESS 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;
        }

        /* --- About Section --- */
        .ob-about {
            padding: 7rem 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(98, 191, 202, 0.06) 0%, rgba(200, 168, 78, 0.06) 100%);
            border-left: 4px solid #62BFCA;
            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(98, 191, 202, 0.25);
            line-height: 1;
        }
        .ob-about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            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;
        }
        .ob-about-visual {
            position: relative;
        }
        .ob-about-visual .visual-card {
            background: var(--primary, #0a1628);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        .ob-about-visual .visual-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(200, 168, 78, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .ob-stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        .ob-stat {
            text-align: center;
            padding: 1.5rem 1rem;
            border-radius: 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            transition: transform 0.4s ease, background 0.4s ease;
        }
        .ob-stat:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.08);
        }
        .ob-stat-number {
            font-family: 'Archivo', sans-serif;
            font-size: 2.75rem;
            font-weight: 900;
            color: var(--accent, #c8a84e);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .ob-stat-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }

        /* --- Global Investigations Section --- */
        .ob-global {
            padding: 7rem 0;
            background: var(--primary, #0a1628);
            position: relative;
            overflow: hidden;
        }
        .ob-global::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 50% at 10% 30%, rgba(98, 191, 202, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 50% 60% at 90% 70%, rgba(98, 191, 202, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }
        .ob-global::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            border: 1px solid rgba(98, 191, 202, 0.06);
            pointer-events: none;
            animation: globalOrbit 40s linear infinite;
        }
        @keyframes globalOrbit {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .ob-global .section-badge.light {
            background: rgba(98, 191, 202, 0.1);
            border-color: rgba(98, 191, 202, 0.25);
            color: #62BFCA;
        }
        .ob-global-title {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.25rem, 4vw, 3.25rem);
            font-weight: 900;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        .ob-global-callout {
            max-width: 800px;
            margin: 0 auto;
            padding: 2.5rem 3rem;
            background: linear-gradient(135deg, rgba(98, 191, 202, 0.1) 0%, rgba(98, 191, 202, 0.04) 100%);
            border-left: 4px solid #62BFCA;
            border-radius: 0 20px 20px 0;
            position: relative;
        }
        .ob-global-callout::before {
            display: none;
        }
        .ob-global-callout p {
            font-size: 1.125rem;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.85);
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        .ob-global-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3.5rem;
            position: relative;
            z-index: 2;
        }
        .ob-global-card {
            padding: 2.5rem 2rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .ob-global-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #62BFCA, rgba(98, 191, 202, 0.2));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .ob-global-card:hover {
            border-color: #62BFCA;
            box-shadow: 0 8px 32px rgba(98, 191, 202, 0.2), 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: translateY(-6px);
            background: rgba(98, 191, 202, 0.06);
        }
        .ob-global-card:hover::before {
            opacity: 1;
        }
        .ob-global-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(98, 191, 202, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #62BFCA;
            transition: background 0.4s ease, transform 0.4s ease;
        }
        .ob-global-card:hover .ob-global-icon {
            background: rgba(98, 191, 202, 0.18);
            transform: scale(1.05);
        }
        .ob-global-card h4 {
            font-family: 'Archivo', sans-serif;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
            line-height: 1.3;
        }
        .ob-global-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9375rem;
            line-height: 1.75;
        }

        /* --- Our History Section --- */
        .ob-history {
            padding: 7rem 0;
            background: var(--gray-50, #f9fafb);
            position: relative;
            overflow: hidden;
        }
        .ob-history::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(98, 191, 202, 0.25) 20%, rgba(98, 191, 202, 0.25) 80%, transparent);
            pointer-events: none;
        }
        .ob-history-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        .ob-history-header 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-history-timeline {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            gap: 0;
            align-items: stretch;
            position: relative;
            z-index: 2;
        }
        .ob-history-era {
            padding: 3rem;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .ob-history-era:hover {
            transform: translateY(-4px);
        }
        .ob-history-era.era-origin {
            background: var(--primary, #0a1628);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .ob-history-era.era-origin:hover {
            box-shadow: 0 12px 40px rgba(10, 22, 40, 0.25);
        }
        .ob-history-era.era-origin::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(98, 191, 202, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .ob-history-era.era-today {
            background: linear-gradient(135deg, rgba(98, 191, 202, 0.06) 0%, rgba(98, 191, 202, 0.02) 100%);
            border: 1px solid rgba(98, 191, 202, 0.2);
        }
        .ob-history-era.era-today:hover {
            border-color: rgba(98, 191, 202, 0.4);
            box-shadow: 0 12px 40px rgba(98, 191, 202, 0.12);
        }
        .ob-history-year {
            font-family: 'Archivo', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .era-origin .ob-history-year {
            background: linear-gradient(135deg, #62BFCA, rgba(98, 191, 202, 0.5));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .era-today .ob-history-year {
            color: var(--primary, #0a1628);
        }
        .era-origin .ob-history-era-label {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(98, 191, 202, 0.12);
            border-radius: 6px;
            font-size: 0.6875rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #62BFCA;
            margin-bottom: 1.5rem;
        }
        .era-today .ob-history-era-label {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(200, 168, 78, 0.1);
            border-radius: 6px;
            font-size: 0.6875rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent, #c8a84e);
            margin-bottom: 1.5rem;
        }
        .era-origin p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.65);
        }
        .era-today p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: var(--gray-600, #4b5563);
        }
        .ob-history-connector {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .ob-history-connector .connector-line {
            width: 2px;
            flex: 1;
            background: linear-gradient(180deg, rgba(98, 191, 202, 0.3), rgba(200, 168, 78, 0.3));
        }
        .ob-history-connector .connector-dot {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary, #0a1628);
            border: 3px solid #62BFCA;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(98, 191, 202, 0.2);
        }
        .ob-history-connector .connector-dot svg {
            width: 20px;
            height: 20px;
            color: #62BFCA;
        }
        @media (max-width: 900px) {
            .ob-history::before { display: none; }
            .ob-history-timeline {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .ob-history-connector {
                flex-direction: row;
                padding: 0 2rem;
            }
            .ob-history-connector .connector-line {
                width: auto;
                height: 2px;
                flex: 1;
            }
        }

        /* --- Fraud Section --- */
        .ob-fraud {
            padding: 7rem 0;
            background: var(--gray-50, #f9fafb);
            position: relative;
            overflow: hidden;
        }
        .ob-fraud::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200, 168, 78, 0.2), transparent);
        }
        .ob-fraud-inner {
            /* no max-width needed when in grid */
        }
        .ob-fraud-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .ob-fraud-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
        }
        .ob-fraud-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 320px;
            max-height: 380px;
            border-radius: 24px;
        }
        .ob-fraud-inner 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-fraud-inner h2 em {
            font-style: italic;
            color: var(--accent, #c8a84e);
        }
        .ob-fraud-inner p {
            font-size: 1.0625rem;
            line-height: 1.85;
            color: var(--gray-600, #4b5563);
            margin-bottom: 1.25rem;
        }

        /* --- Cobra AI Hero Banner (screenshot-inspired) --- */
        .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;
        }
        .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;
        }

        /* --- Values Section (Honest & Quality) --- */
        .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(98, 191, 202, 0.5);
            box-shadow: 0 8px 32px rgba(98, 191, 202, 0.15), 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, var(--accent, #c8a84e), var(--primary, #0a1628));
            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(200, 168, 78, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--accent, #c8a84e);
        }
        .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);
        }
        .ob-value-card .value-accent {
            display: block;
            margin-top: 1.5rem;
            font-family: 'Archivo', sans-serif;
            font-style: italic;
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--accent, #c8a84e);
            line-height: 1.5;
        }

        /* --- Intelligence Data 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 {
            position: absolute;
            inset: 0;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            transition: transform 0.6s ease;
            z-index: 0;
        }
        .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,
        .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;
        }

        /* --- Responsive --- */
        @media (max-width: 900px) {
            .ob-hero { padding: 8rem 0 4rem; }
            .ob-about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .ob-fraud-grid { grid-template-columns: 1fr; gap: 2rem; }
            .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-global-grid { grid-template-columns: 1fr; }
            .ob-global-callout { padding: 2rem 1.5rem; }
            .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-stat-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
            .ob-about-visual .visual-card { padding: 1.5rem; }
            .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; }
        }

        /* 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; }