html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        body {
            overflow-x: hidden;
        }

        /* ===== NEW NAVIGATION STYLES ===== */
        .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); }
        .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); }
        @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; } }
        .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-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-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 { 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 { 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 { 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); }
        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;
        }

        .header-actions .btn-primary:hover { background: #d4edf4 !important; color: var(--primary, #0a1628) !important; }
        .page-hero .btn-accent.btn-lg:hover { background: #ea580c !important; border-color: #ea580c !important; }
        .page-hero .btn-outline.btn-lg { background: transparent !important; border: 2px solid #ffffff !important; color: #ffffff !important; }
        .page-hero .btn-outline.btn-lg:hover { background: #ea580c !important; border-color: #ea580c !important; color: #ffffff !important; }
        @media (max-width: 768px) { .page-hero { padding-bottom: 3rem !important; } }


        /* ==========================================================
           CASE STUDY SECTIONS
           ========================================================== */
        .cs-section {
            padding: 5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .cs-section--white { background: #ffffff; }
        .cs-section--tinted {
            background: #f7f8fa;
            background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230a1628' fill-opacity='0.012'%3E%3Cpath d='M20 0L0 20h40z'/%3E%3C/g%3E%3C/svg%3E");
        }
        .cs-section--dark {
            background: linear-gradient(170deg, #0a1628 0%, #0f1f3d 50%, #0a1628 100%);
        }
        .cs-section--dark::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse at 15% 50%, rgba(200,168,78,0.05) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 30%, rgba(98,191,202,0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Section headers — exact match to original font styling */
        .cs-section .section-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
        .cs-section .section-label {
            display: inline-block;
            font-family: 'Archivo', sans-serif;
            font-size: 0.75rem; font-weight: 800;
            letter-spacing: 0.18em; text-transform: uppercase;
            color: #c8a84e;
            margin-bottom: 1rem;
            position: relative; padding: 0 2.5rem;
        }
        .cs-section .section-label::before,
        .cs-section .section-label::after {
            content: ''; position: absolute; top: 50%;
            width: 20px; height: 1px; background: #c8a84e;
        }
        .cs-section .section-label::before { left: 0; }
        .cs-section .section-label::after  { right: 0; }
        .cs-section .section-title {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900; color: #0a1628; line-height: 1.15;
        }
        .cs-section .section-title .accent-text { color: #62BFCA; }
        .cs-section--dark .section-title { color: #ffffff; }
        .cs-section--dark .section-label { color: #62BFCA; }
        .cs-section--dark .section-label::before,
        .cs-section--dark .section-label::after { background: rgba(98,191,202,0.4); }
        .cs-section .section-intro {
            font-family: 'Archivo', sans-serif;
            font-size: 1.0625rem; color: #4b5563;
            max-width: 660px; margin: 1.15rem auto 0; line-height: 1.75;
        }
        .cs-section--dark .section-intro { color: rgba(255,255,255,0.65); }

        /* Card grid */
        .cs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative; z-index: 1;
        }
        .cs-grid--2col { grid-template-columns: repeat(2, 1fr); max-width: 820px; }

        /* Card */
        .cs-card {
            background: #ffffff; border-radius: 14px; overflow: hidden;
            border: 1px solid rgba(0,0,0,0.06);
            display: flex; flex-direction: column; position: relative;
            transition: transform 0.45s cubic-bezier(.22,1,.36,1), box-shadow 0.45s ease;
            opacity: 0; transform: translateY(32px);
        }
        .cs-card.revealed {
            opacity: 1; transform: translateY(0);
            transition: opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1);
        }
        .cs-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 48px rgba(10,22,40,0.08), 0 4px 12px rgba(10,22,40,0.04);
        }
        .cs-section--dark .cs-card {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
            backdrop-filter: blur(6px);
        }
        .cs-section--dark .cs-card:hover {
            background: rgba(255,255,255,0.07);
            box-shadow: 0 24px 48px rgba(0,0,0,0.25);
        }

        .cs-card__bar { height: 3px; background: linear-gradient(90deg, #0a1628 0%, #62BFCA 100%); flex-shrink: 0; }
        .cs-card__body { padding: 1.75rem 1.75rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

        /* Tags */
        .cs-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
        .cs-tag {
            display: inline-flex; align-items: center; gap: 0.3rem;
            padding: 0.25rem 0.65rem; border-radius: 50px;
            font-family: 'Archivo', sans-serif; font-size: 0.6875rem;
            font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.5;
        }
        .cs-tag svg { width: 11px; height: 11px; flex-shrink: 0; }
        .cs-tag--geo     { background: rgba(98,191,202,0.1);  color: #2d8a93; }
        .cs-tag--value   { background: rgba(200,168,78,0.1);  color: #9a7a2a; }
        .cs-tag--success { background: rgba(22,163,74,0.08);  color: #16a34a; }
        .cs-tag--time    { background: rgba(10,22,40,0.05);   color: #64748b; }
        .cs-section--dark .cs-tag--geo     { background: rgba(98,191,202,0.15);  color: #7dd3df; }
        .cs-section--dark .cs-tag--value   { background: rgba(200,168,78,0.15);  color: #d4b862; }
        .cs-section--dark .cs-tag--success { background: rgba(22,163,74,0.12);   color: #4ade80; }
        .cs-section--dark .cs-tag--time    { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }

        .cs-card__title {
            font-family: 'Archivo', sans-serif; font-size: 1.1875rem;
            font-weight: 800; color: #0a1628; line-height: 1.3; margin-bottom: 0.85rem;
        }
        .cs-section--dark .cs-card__title { color: #ffffff; }
        .cs-card__text {
            font-family: 'Archivo', sans-serif; font-size: 0.9375rem;
            color: #4b5563; line-height: 1.75; flex: 1;
        }
        .cs-section--dark .cs-card__text { color: rgba(255,255,255,0.6); }

        /* Card outcome */
        .cs-card__outcome {
            margin-top: 1.35rem; padding-top: 1.15rem;
            border-top: 1px solid rgba(0,0,0,0.06);
            display: flex; align-items: flex-start; gap: 0.6rem;
        }
        .cs-section--dark .cs-card__outcome { border-top-color: rgba(255,255,255,0.08); }
        .cs-outcome-dot {
            width: 8px; height: 8px; min-width: 8px;
            border-radius: 50%; margin-top: 5px;
        }
        .cs-outcome-dot--green  { background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.15); }
        .cs-outcome-dot--teal   { background: #62BFCA; box-shadow: 0 0 0 3px rgba(98,191,202,0.15); }
        .cs-outcome-dot--gold   { background: #c8a84e; box-shadow: 0 0 0 3px rgba(200,168,78,0.15); }
        .cs-outcome-label {
            font-family: 'Archivo', sans-serif; font-size: 0.8125rem;
            font-weight: 700; color: #0a1628; line-height: 1.45;
        }
        .cs-outcome-label span { font-weight: 500; color: #6b7280; }
        .cs-section--dark .cs-outcome-label { color: rgba(255,255,255,0.9); }
        .cs-section--dark .cs-outcome-label span { color: rgba(255,255,255,0.45); }


        /* ==========================================================
           CTA SECTION
           ========================================================== */
        .cs-cta {
            position: relative; padding: 6rem 0;
            background: #0a1628; overflow: hidden;
        }
        .cs-cta::before {
            content: ''; position: absolute; inset: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(98,191,202,0.04) 59px, rgba(98,191,202,0.04) 60px),
                repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(98,191,202,0.04) 59px, rgba(98,191,202,0.04) 60px);
            animation: ctaGrid 25s linear infinite;
        }
        @keyframes ctaGrid { 0% { transform: translate(0,0); } 100% { transform: translate(60px,60px); } }
        .cs-cta::after {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 600px 400px at 20% 50%, rgba(200,168,78,0.07) 0%, transparent 100%),
                radial-gradient(ellipse 600px 400px at 80% 60%, rgba(98,191,202,0.06) 0%, transparent 100%);
            pointer-events: none;
        }
        .cs-cta__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
        .cs-cta__icons { display: flex; justify-content: center; gap: 0.875rem; margin-bottom: 2.25rem; }
        .cs-cta__icon {
            width: 48px; height: 48px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(98,191,202,0.2); background: rgba(98,191,202,0.06);
            animation: iconFloat 3.5s ease-in-out infinite;
        }
        .cs-cta__icon:nth-child(2) { animation-delay: 0.5s; }
        .cs-cta__icon:nth-child(3) { animation-delay: 1s; }
        @keyframes iconFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
        .cs-cta__icon svg { width: 20px; height: 20px; stroke: #62BFCA; fill: none; stroke-width: 1.5; }
        .cs-cta__sup {
            font-family: 'Archivo', sans-serif; font-size: 0.75rem; font-weight: 800;
            letter-spacing: 0.2em; text-transform: uppercase; color: #c8a84e; margin-bottom: 1.15rem;
        }
        .cs-cta__title {
            font-family: 'Archivo', sans-serif; font-size: clamp(1.85rem, 3.5vw, 2.625rem);
            font-weight: 900; color: #ffffff; line-height: 1.2; margin-bottom: 1.15rem;
        }
        .cs-cta__title .accent-text { color: #62BFCA; }
        .cs-cta__desc {
            font-family: 'Archivo', sans-serif; font-size: 1.0625rem;
            color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 2.5rem;
        }
        .cs-cta__buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
        .cs-cta__buttons .btn-accent { background: #c8a84e; color: #fff; border: 2px solid #c8a84e; }
        .cs-cta__buttons .btn-accent:hover { background: #b89a40; border-color: #b89a40; }
        .cs-cta__ghost {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.875rem 1.75rem; border-radius: 10px;
            font-family: 'Archivo', sans-serif; font-size: 0.875rem;
            font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
            text-decoration: none; color: rgba(255,255,255,0.85);
            border: 2px solid rgba(255,255,255,0.15); background: transparent;
            transition: all 0.3s ease;
        }
        .cs-cta__ghost:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); color: #fff; }
        .cs-cta__ghost svg { width: 16px; height: 16px; }
        .cs-cta__stats { display: flex; justify-content: center; gap: 3.5rem; margin-top: 3rem; flex-wrap: wrap; }
        .cs-cta__stat-num { font-family: 'Archivo', sans-serif; font-size: 1.625rem; font-weight: 900; color: #62BFCA; line-height: 1; }
        .cs-cta__stat-label {
            font-family: 'Archivo', sans-serif; font-size: 0.6875rem; font-weight: 700;
            color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem;
        }


        /* ==========================================================
           CONSULTATION — UNCHANGED
           ========================================================== */
        .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; z-index: 1;
            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");
        }
        .consultation-content { position: relative; z-index: 2; text-align: center; }
        .consultation-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(98,191,202,0.2); border: 1px solid rgba(98,191,202,0.3);
            padding: 0.75rem 1.5rem; border-radius: 50px; margin-bottom: 2rem;
        }
        .consultation-badge svg { width: 20px; height: 20px; stroke: #62BFCA; }
        .consultation-badge span { color: #62BFCA; font-weight: 800; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; }
        .consultation-title { font-family: 'Archivo', sans-serif; font-size: 3.5rem; font-weight: 900; color: white; margin-bottom: 1.5rem; line-height: 1.2; }
        .consultation-description { font-size: 1.25rem; color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 3rem; line-height: 1.7; }
        .consultation-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 4rem; }
        .consultation-stat { text-align: center; }
        .consultation-stat-number { font-family: 'Archivo', sans-serif; font-size: 3rem; font-weight: 900; color: #62BFCA; line-height: 1; margin-bottom: 0.5rem; }
        .consultation-stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
        @media (max-width: 900px) {
            .consultation-title { font-size: 2.5rem; }
            .consultation-stats { flex-direction: column; gap: 2rem; }
            .direct-consultation-section { padding: 5rem 0; }
        }

        /* ==========================================================
           RESPONSIVE
           ========================================================== */
        @media (max-width: 1024px) {
            .cs-grid { grid-template-columns: repeat(2, 1fr); }
            .cs-grid--2col { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 700px) {
            .cs-section { padding: 3.5rem 0 3rem; }
            .cs-grid, .cs-grid--2col { grid-template-columns: 1fr; gap: 1.25rem; }
            .cs-card__body { padding: 1.35rem 1.35rem 1.25rem; }
            .cs-cta { padding: 4rem 0; }
            .cs-cta__stats { gap: 2rem; }
        }