        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-blue: #0B1635;
            --navy: #0B1635;
            --gold: #FF6600;
            --cream: #FAFAFA;
            --charcoal: #1A1A1A;
            --white: #FFFFFF;
            --muted: #6B7280;
            --border: rgba(0, 0, 0, 0.06);
            --dark-blue-deep: #070E24;
            --container: min(90vw, 1400px);
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --btn-radius: 12px;
            --card-radius: 16px;
            --space-sm: 1.5rem;
            --space-md: 2rem;
            --space-lg: 3rem;
            --space-xl: 4rem;
            --section-padding: 2.5rem;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
            --shadow-card-hover: 0 20px 50px -12px rgba(11, 22, 53, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
            --btn-pri-hover: #0c1838;
            --btn-shadow-hover: 0 8px 24px -4px rgba(11, 22, 53, 0.22);
            --btn-gold-glow: 0 6px 20px -2px rgba(212, 175, 55, 0.25);
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --ease-btn: cubic-bezier(0.22, 1, 0.36, 1);
            --btn-font-weight: 600;
            --btn-letter-spacing: 0.025em;
            --btn-shadow: 0 2px 8px rgba(11, 22, 53, 0.15);
            --btn-shadow-active: 0 1px 4px rgba(11, 22, 53, 0.12);
            --btn-outline: 2px solid rgba(255, 102, 0, 0.5);
            --btn-outline-offset: 2px;
            /* Standard horizontal spacing by device (match homepage) */
            --gutter: 16px;
        }

        @media (min-width: 640px) {
            :root {
                --gutter: 24px;
            }
        }

        @media (min-width: 768px) {
            :root {
                --gutter: 32px;
            }
        }

        @media (min-width: 1024px) {
            :root {
                --gutter: 48px;
            }
        }

        @media (min-width: 1280px) {
            :root {
                --gutter: 64px;
            }
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
            background: linear-gradient(180deg, #FAFBFC 0%, #F5F6F8 35%, #FAFAFA 70%, #FFFFFF 100%);
            background-attachment: fixed;
            font-weight: 400;
            overflow-wrap: break-word;
        }
        @media (max-width: 768px) {
            body { background-attachment: scroll; }
        }

        main {
            overflow-x: hidden;
            min-width: 0;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--gutter);
            width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a,
        button {
            -webkit-tap-highlight-color: transparent;
        }

        .skip-link {
            position: absolute;
            top: -3rem;
            left: 1rem;
            z-index: 10000;
            padding: 0.6rem 1rem;
            background: var(--navy);
            color: var(--white);
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            border-radius: 6px;
            transition: top 0.2s var(--ease-out);
        }

        .skip-link:focus {
            top: 1rem;
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        /* --- NAV --- */
        nav {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: min(94%, 1200px);
            max-width: 100%;
            background: #ffffff;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 999px;
            z-index: 1000;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.25s var(--ease-out), top 0.25s var(--ease-out), transform 0.35s var(--ease-out);
            overflow: visible;
        }

        nav.scrolled {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            top: 1rem;
            border-color: rgba(0, 0, 0, 0.06);
        }

        nav.nav-hidden {
            transform: translateX(-50%) translateY(calc(-100% - 2rem));
            pointer-events: none;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1.25rem 0.5rem 1.75rem;
            min-height: 64px;
            position: relative;
            overflow: visible;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 2;
            transition: opacity 0.2s var(--ease-out);
        }

        .logo:hover {
            opacity: 0.82;
        }

        .logo-img {
            height: 58px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 2.25rem;
            list-style: none;
            align-items: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--muted);
            font-weight: 500;
            font-size: 0.8125rem;
            letter-spacing: 0.03em;
            transition: color 0.2s var(--ease-out);
            padding: 0.45rem 0;
        }

        .nav-links a:hover {
            color: var(--navy);
        }

        .nav-links a.current {
            color: var(--navy);
            font-weight: 600;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown>a {
            white-space: nowrap;
        }

        .nav-dropdown>a::after {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            margin-left: 0.3rem;
            border-left: 3.5px solid transparent;
            border-right: 3.5px solid transparent;
            border-top: 3.5px solid currentColor;
            opacity: 0.5;
            vertical-align: middle;
            transition: transform 0.25s var(--ease-out);
        }

        .nav-dropdown:hover>a::after,
        .nav-dropdown.open>a::after {
            transform: rotate(180deg);
        }

        .nav-mobile-logo {
            display: none;
        }

        .nav-dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 200px;
            width: max-content;
            max-width: min(280px, 90vw);
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 8px;
            padding: 0.5rem;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
            z-index: 1001;
            pointer-events: none;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.22s var(--ease-out), visibility 0.22s, transform 0.22s var(--ease-out);
        }

        .nav-dropdown-content::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-bottom-color: rgba(255, 255, 255, 0.96);
            margin-bottom: -1px;
        }

        .nav-dropdown:hover .nav-dropdown-content,
        .nav-dropdown.open .nav-dropdown-content {
            pointer-events: auto;
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-content a {
            display: block;
            padding: 0.6rem 0.9rem;
            color: #334155;
            font-size: 0.8125rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            line-height: 1.4;
            white-space: nowrap;
            transition: color 0.18s var(--ease-out), background 0.18s var(--ease-out);
            border-radius: 6px;
            position: relative;
        }

        .nav-dropdown-content a:hover {
            color: var(--navy);
            background: rgba(15, 23, 42, 0.06);
        }

        .nav-dropdown-content a:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        .nav-dropdown-label {
            display: block;
            font-size: 0.6875rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            padding: 0.4rem 0.9rem 0.3rem;
            margin-bottom: 0.2rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            pointer-events: none;
            white-space: nowrap;
        }

        .cta-nav {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--navy);
            color: var(--white);
            padding: 0.625rem 1.5rem;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.025em;
            text-decoration: none;
            border: none;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(11, 22, 53, 0.15);
            transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .cta-nav:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px -2px rgba(255, 102, 0, 0.4);
        }

        .cta-nav:active {
            transform: translateY(0);
            box-shadow: 0 1px 4px rgba(11, 22, 53, 0.12);
        }

        .cta-nav:focus-visible {
            outline: 2px solid rgba(255, 102, 0, 0.5);
            outline-offset: 2px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--navy);
            cursor: pointer;
            touch-action: manipulation;
            z-index: 1001;
            padding: 0;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: background 0.2s var(--ease-out);
            position: relative;
        }

        .mobile-menu-btn:hover {
            background: rgba(11, 22, 53, 0.06);
        }

        .mobile-menu-btn .icon-menu,
        .mobile-menu-btn .icon-close {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.25s var(--ease-out);
        }

        .mobile-menu-btn .icon-close {
            position: absolute;
            inset: 0;
            opacity: 0;
        }

        nav.menu-open .mobile-menu-btn .icon-menu {
            opacity: 0;
            visibility: hidden;
        }

        nav.menu-open .mobile-menu-btn .icon-close {
            opacity: 1;
            visibility: visible;
        }

        /* --- PAGE HERO --- */
        .page-hero {
            padding: clamp(8rem, 12vw, 10rem) var(--gutter) var(--section-padding);
            background: linear-gradient(145deg, #0B1635 0%, #0d1f4a 45%, #0a1330 100%);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 75% 20%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 50% 50% at 20% 80%, rgba(11, 22, 53, 0.4) 0%, transparent 50%);
            pointer-events: none;
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
            max-width: var(--container);
            text-align: left;
        }

        .page-hero h1 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--white);
            margin: 0 0 0.75rem;
            line-height: 1.15;
            letter-spacing: -0.02em;
            text-align: left;
        }

        .page-hero p {
            font-size: clamp(0.9375rem, 0.85rem + 0.45vw, 1.0625rem);
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.62;
            text-align: left;
            width: 100%;
            max-width: none;
            margin: 0;
            text-wrap: pretty;
            overflow-wrap: break-word;
        }

        /* --- BLOG SECTION --- */
        .blog-section {
            padding: var(--space-xl) 0 var(--section-padding);
            background: linear-gradient(180deg, #F5F6F8 0%, var(--cream) 40%, #FAFBFC 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-section::before {
            content: '';
            position: absolute;
            width: 45%;
            height: 60%;
            bottom: 10%;
            right: -5%;
            background: radial-gradient(ellipse at center, rgba(11, 22, 53, 0.025) 0%, transparent 65%);
            pointer-events: none;
        }

        .blog-section .container,
        .blog-section .sec-head,
        .blog-section .blog-grid {
            position: relative;
            z-index: 1;
        }

        .blog-section .sec-head {
            margin-bottom: var(--space-lg);
        }

        .blog-section .sec-head h2 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: clamp(1.75rem, 2.5vw, 2.25rem);
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .blog-section .sec-head p {
            font-size: 0.9375rem;
            color: var(--muted);
            max-width: 100%;
            width: 100%;
            min-width: 0;
            text-wrap: pretty;
            line-height: 1.65;
            white-space: normal;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--card-radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.35s var(--ease-spring);
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(255, 102, 0, 0.2);
        }

        .blog-card-image {
            width: 100%;
            aspect-ratio: 16 / 10;
            background: linear-gradient(135deg, rgba(11, 22, 53, 0.08) 0%, rgba(11, 22, 53, 0.04) 50%, rgba(255, 102, 0, 0.06) 100%);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .blog-card-image.blog-card-image--object-left {
            background: linear-gradient(135deg, #0b1635 0%, rgba(11, 22, 53, 0.92) 28%, rgba(11, 22, 53, 0.06) 55%, rgba(255, 102, 0, 0.06) 100%);
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s var(--ease-out);
        }

        /* Branded left copy: cover fills frame; left anchor avoids center-cropping the headline */
        .blog-card-image.blog-card-image--object-left img {
            object-fit: cover;
            object-position: left center;
            transform-origin: left center;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.03);
        }

        .blog-card-body {
            padding: 1.25rem 1.25rem 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
        }

        .blog-card-meta {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .blog-card-title {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1.35;
            margin-bottom: 0.5rem;
            transition: color 0.2s var(--ease-out);
        }

        .blog-card-title a {
            color: inherit;
            text-decoration: none;
        }

        .blog-card-title a:hover {
            color: var(--gold);
        }

        .blog-card-excerpt {
            font-size: 0.875rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }

        .blog-card-link {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--gold);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            transition: color 0.2s var(--ease-out), gap 0.2s var(--ease-out);
        }

        .blog-card-link:hover {
            color: var(--navy);
            gap: 0.5rem;
        }

        .blog-card-link svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        .blog-empty {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--white);
            border-radius: 12px;
            border: 1px dashed var(--border);
        }

        .blog-empty p {
            color: var(--muted);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .blog-empty a {
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
        }

        .blog-empty a:hover {
            text-decoration: underline;
        }

        /* --- FOOTER --- */
        footer {
            background: linear-gradient(180deg, #0d1a3a 0%, var(--navy) 30%, #070E24 100%);
            color: rgba(255, 255, 255, 0.65);
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
        }

        .footer-main {
            padding: var(--space-xl) var(--gutter) var(--space-lg);
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
            gap: var(--space-lg);
        }

        .footer-brand .logo {
            display: inline-flex;
            margin-bottom: 1.25rem;
            transition: opacity 0.2s;
        }

        .footer-brand .logo:hover {
            opacity: 0.8;
        }

        .footer-brand .logo-img {
            height: 108px;
            width: auto;
            object-fit: contain;
            
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.75;
            max-width: 280px;
            margin-bottom: 1.75rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.25s var(--ease-out);
        }

        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-social svg {
            width: 16px;
            height: 16px;
        }

        .footer-col h4 {
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.625rem;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.2s var(--ease-out), padding-left 0.2s var(--ease-out);
            display: inline-block;
        }

        .footer-col a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-contact-item:last-child {
            margin-bottom: 0;
        }

        .footer-contact-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-icon svg {
            width: 14px;
            height: 14px;
            color: var(--gold);
            filter: drop-shadow(0 0 4px rgba(255, 102, 0, 0.4));
        }

        .footer-contact-item a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-contact-item a:hover {
            color: var(--white);
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04), transparent);
            position: relative;
            z-index: 1;
        }

        .footer-bottom {
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.35);
            position: relative;
            z-index: 1;
        }

        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-license {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0.75rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
        }

        .footer-license-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(255, 102, 0, 0.4);
            animation: footerDotPulse 2.5s ease-in-out infinite;
        }

        @keyframes footerDotPulse {

            0%,
            100% {
                opacity: 0.7;
                box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(255, 102, 0, 0.4);
            }

            50% {
                opacity: 1;
                box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(255, 102, 0, 0.6);
            }
        }

        .footer-legal {
            display: flex;
            gap: 1.25rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            font-size: 0.8125rem;
            transition: color 0.2s;
        }

        .footer-legal a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-back-top {
            width: 40px;
            height: 40px;
            border-radius: var(--btn-radius);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: background 0.25s var(--ease-btn), border-color 0.2s var(--ease-btn), color 0.2s var(--ease-btn), transform 0.2s var(--ease-btn), box-shadow 0.25s var(--ease-btn);
        }

        .footer-back-top:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(255, 102, 0, 0.35);
        }

        .footer-back-top:active {
            transform: translateY(0);
        }

        .footer-back-top:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.6);
            outline-offset: 2px;
        }

        .footer-back-top svg {
            width: 16px;
            height: 16px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(32px);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .container {
                padding: 0 var(--gutter);
            }

            nav {
                left: 4%;
                right: 4%;
                width: auto;
                transform: none;
            }

            nav.nav-hidden {
                transform: translateY(calc(-100% - 2rem));
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 var(--gutter);
            }

            .nav-links {
                position: fixed;
                inset: 0;
                width: 100%;
                height: 100%;
                min-height: 100vh;
                min-height: 100dvh;
                z-index: 999;
                background: #ffffff;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                padding: max(5.5rem, calc(5.5rem + env(safe-area-inset-top))) max(1.5rem, env(safe-area-inset-right)) max(2.5rem, calc(2rem + env(safe-area-inset-bottom))) max(1.5rem, env(safe-area-inset-left));
                gap: 0;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0.3s, transform 0.3s cubic-bezier(0.4,0,0.2,1);
                box-shadow: none;
                border-radius: 0;
                margin: 0;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                list-style: none;
                pointer-events: none;
            }
            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }
            .nav-links.active > li {
                animation: navItemReveal 0.32s cubic-bezier(0.4,0,0.2,1) backwards;
            }
            .nav-links.active > li:nth-child(1) { animation-delay: 0.03s; }
            .nav-links.active > li:nth-child(2) { animation-delay: 0.06s; }
            .nav-links.active > li:nth-child(3) { animation-delay: 0.09s; }
            .nav-links.active > li:nth-child(4) { animation-delay: 0.12s; }
            .nav-links.active > li:nth-child(5) { animation-delay: 0.15s; }
            .nav-links.active > li:nth-child(6) { animation-delay: 0.18s; }
            .nav-links.active > li:nth-child(7) { animation-delay: 0.21s; }
            .nav-links.active > li:nth-child(8) { animation-delay: 0.24s; }
            .nav-links.active > li:nth-child(9) { animation-delay: 0.27s; }
            @keyframes navItemReveal {
                from { opacity: 0; transform: translateX(-10px); }
                to   { opacity: 1; transform: translateX(0); }
            }
            .nav-inner { padding: 0.4rem 1.35rem; min-height: 60px; display: flex; align-items: center; justify-content: space-between; }
            nav.menu-open .nav-inner { z-index: 1001; position: relative; }
            nav.menu-open .logo, nav.menu-open .mobile-menu-btn { z-index: 1002; position: relative; }
            .logo-img { height: 38px; }
            .nav-mobile-logo { display: none !important; }
            .nav-links > li {
                border-bottom: 1px solid rgba(11,22,53,0.06);
                flex-shrink: 0;
            }
            .nav-links > li:last-child { border-bottom: none; }
            .nav-links > li > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0.9rem 0;
                font-size: 1.0625rem;
                font-weight: 600;
                color: var(--navy);
                min-height: 52px;
                -webkit-tap-highlight-color: transparent;
                transition: color 0.2s;
            }
            .nav-links > li > a:hover,
            .nav-links > li > a:active { color: var(--gold); }
            .nav-links > li > a::after { display: none; }
            .nav-dropdown:hover .nav-dropdown-content { max-height: 0; overflow: hidden; }
            .nav-dropdown-content {
                position: static;
                transform: none !important;
                display: block;
                box-shadow: none;
                background: rgba(11,22,53,0.03);
                border: 1px solid rgba(11,22,53,0.07);
                min-width: unset;
                width: 100%;
                max-width: 100%;
                border-radius: 12px;
                max-height: 0;
                overflow: hidden;
                padding: 0;
                margin: 0;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: none;
                transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.25s, margin 0.25s;
            }
            .nav-dropdown-content::before { display: none; }
            .nav-dropdown.open .nav-dropdown-content,
            .nav-dropdown.open:hover .nav-dropdown-content {
                max-height: 400px;
                overflow: visible;
                padding: 0.5rem;
                margin: 0.35rem 0 0.5rem;
                pointer-events: auto;
            }
            .nav-dropdown-content .nav-dropdown-label {
                font-size: 0.625rem;
                font-weight: 700;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--muted);
                padding: 0.5rem 0.75rem 0.35rem;
                margin-bottom: 0.15rem;
                border-bottom: 1px solid rgba(11,22,53,0.07);
                white-space: nowrap;
            }
            .nav-dropdown > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .nav-dropdown > a::after {
                content: '';
                display: block;
                width: 8px;
                height: 8px;
                border-right: 2.5px solid currentColor;
                border-bottom: 2.5px solid currentColor;
                transform: rotate(45deg);
                flex-shrink: 0;
                margin-left: 0.5rem;
                transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
            }
            .nav-dropdown.open > a::after {
                transform: rotate(-135deg);
            }
            .nav-dropdown-content a {
                display: flex !important;
                align-items: center;
                gap: 0.65rem;
                padding: 0.8rem 0.85rem;
                font-size: 0.9375rem;
                font-weight: 500;
                color: #334155 !important;
                border-left: none;
                border-radius: 9px;
                margin: 0.15rem 0;
                min-height: 48px;
                -webkit-tap-highlight-color: transparent;
                white-space: normal;
                transition: color 0.18s, background 0.18s;
            }
            .nav-dropdown-content a::before {
                content: '';
                display: block;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--gold);
                flex-shrink: 0;
                opacity: 0.5;
                transition: opacity 0.18s, transform 0.18s;
            }
            .nav-dropdown-content a:hover,
            .nav-dropdown-content a:active {
                color: var(--navy) !important;
                background: rgba(11,22,53,0.06);
            }
            .nav-dropdown-content a:hover::before,
            .nav-dropdown-content a:active::before {
                opacity: 1;
                transform: scale(1.35);
            }
            .mobile-cta-li {
                display: block !important;
                margin-top: 1.5rem;
                padding-top: 1.5rem;
                border-top: 1px solid rgba(11,22,53,0.08);
                border-bottom: none !important;
                width: 100%;
            }
            li.mobile-cta-li > a {
                display: flex !important;
                align-items: center;
                justify-content: center;
                text-align: center;
                width: 100% !important;
                max-width: 100%;
                box-sizing: border-box;
                background: var(--navy) !important;
                color: var(--white) !important;
                padding: 1rem 1.5rem;
                border-radius: 14px;
                font-weight: 700;
                font-size: 1rem;
                min-height: 52px;
                -webkit-tap-highlight-color: transparent;
                transition: background 0.25s var(--ease-out), color 0.2s, transform 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out);
            }
            li.mobile-cta-li > a:hover,
            li.mobile-cta-li > a:active {
                background: var(--gold) !important;
                color: var(--white) !important;
                transform: translateY(-2px);
                box-shadow: 0 8px 24px -4px rgba(255,102,0,0.45);
            }
            .mobile-menu-btn { display: flex; }
            .cta-nav { display: none; }

            .page-hero {
                padding-top: 8.5rem;
                padding-bottom: var(--space-lg);
            }

            .page-hero h1 {
                font-size: clamp(1.75rem, 5vw, 2.25rem);
            }

            .page-hero p {
                font-size: clamp(0.9375rem, 0.88rem + 0.35vw, 1rem);
                line-height: 1.58;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .blog-section .sec-head {
                margin-bottom: var(--space-md);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-brand {
                grid-column: auto;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-bottom-left {
                flex-direction: column;
                gap: 0.75rem;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 var(--gutter);
            }

            .page-hero {
                padding-top: 7rem;
                padding-bottom: 2.5rem;
            }

            .page-hero h1 {
                font-size: 1.625rem;
            }

            .page-hero p {
                font-size: clamp(0.875rem, 0.82rem + 0.6vw, 0.9375rem);
                line-height: 1.55;
            }

            .blog-section {
                padding: 2rem 0 3rem;
            }

            .blog-card-body {
                padding: 1rem 1rem 1.25rem;
            }

            .blog-card-title {
                font-size: 1.05rem;
            }

            .blog-card-excerpt {
                font-size: 0.8125rem;
            }
        }

        /* Global header/footer overrides from index.html */
        nav {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: min(94%, 1100px);
            max-width: 100%;
            background: #ffffff;

            border-radius: 999px;
            z-index: 1000;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03), 0 12px 40px -12px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.35s var(--ease-out), top 0.3s var(--ease-out), transform 0.35s var(--ease-out), background 0.35s var(--ease-out);
            overflow: visible;
        }

        nav.scrolled {
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 20px 48px -12px rgba(0, 0, 0, 0.1);
            top: 1rem;
            border-color: rgba(0, 0, 0, 0.06);
        }

        nav.nav-hidden {
            transform: translateX(-50%) translateY(calc(-100% - 2rem));
            pointer-events: none;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.45rem 1.75rem 0.45rem 2rem;
            min-height: 68px;
            position: relative;
            overflow: visible;
            gap: 1.5rem;
        }

        .logo-img {
            height: 68px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .cta-nav {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--navy);
            color: var(--white);
            padding: 0.7rem 1.8rem;
            border-radius: 999px;
            font-family: var(--font-sans);
            font-weight: var(--btn-font-weight);
            font-size: 0.875rem;
            letter-spacing: var(--btn-letter-spacing);
            text-decoration: none;
            border: none;
            z-index: 2;
            flex-shrink: 0;
            box-shadow: var(--btn-shadow);
            transition: background 0.25s var(--ease-btn), color 0.2s var(--ease-btn), transform 0.2s var(--ease-btn), box-shadow 0.25s var(--ease-btn);
        }

        .cta-nav:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px -2px rgba(255, 102, 0, 0.4);
        }

        .cta-nav:active {
            transform: translateY(0);
            box-shadow: var(--btn-shadow-active);
        }

        .cta-nav:focus-visible {
            outline: var(--btn-outline);
            outline-offset: var(--btn-outline-offset);
        }

        .nav-dropdown-content {
            top: 100%;
        }

        .footer-brand .logo-img {
            height: 108px;
            width: auto;
            object-fit: contain;
            
        }

        .footer-col h4 {
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        @media (max-width: 1024px) {
            .logo-img {
                height: 48px;
            }
        }

        @media (max-width: 768px) {
            .logo-img {
                height: 40px;
            }

            .footer-brand .logo-img {
                height: 102px;
            width: auto;
            object-fit: contain;
            }
        }
    
        /* --- GLOBAL MOBILE NAV/FOOTER FIXES (Injected by fix_mobile.py) --- */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--navy);
            cursor: pointer;
            touch-action: manipulation;
            z-index: 1001;
            padding: 0;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
            position: relative;
        }
        .mobile-menu-btn:hover { background: rgba(11, 22, 53, 0.06); }
        .mobile-menu-btn:focus { outline: none; }
        .mobile-menu-btn .icon-menu, .mobile-menu-btn .icon-close { display: flex; align-items: center; justify-content: center; transition: opacity 0.25s var(--ease-out); }
        .mobile-menu-btn .icon-close { display: none; }
        nav.menu-open .mobile-menu-btn .icon-menu { display: none; }
        nav.menu-open .mobile-menu-btn .icon-close { display: block; }
        .cta-nav { display: inline-flex; }

        @media (max-width: 1024px) {
            .nav-inner { padding: 0.4rem 1.35rem !important; min-height: 60px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }
            nav.menu-open .nav-inner { z-index: 1001 !important; position: relative !important; }
            nav { left: 4% !important; right: 4% !important; width: auto !important; transform: none !important; }
            nav.menu-open .logo, nav.menu-open .mobile-menu-btn { z-index: 1002 !important; position: relative !important; }
            nav.menu-open::before { content: ''; position: fixed; inset: 0; z-index: 998; background: rgba(11, 22, 53, 0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; animation: navBackdropIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
            @keyframes navBackdropIn { to { opacity: 1; } }
            nav.menu-open::after { content: ''; position: fixed; inset: 0; z-index: 997; pointer-events: auto; }
            .nav-links {
                position: fixed !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
                width: 100% !important;
                max-height: clamp(75vh, 88dvh, 92vh) !important;
                min-height: min(320px, 70vh) !important;
                z-index: 999 !important;
                background: #ffffff !important;
                backdrop-filter: blur(0) !important;
                -webkit-backdrop-filter: blur(0) !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                padding: max(5.5rem, calc(5.5rem + env(safe-area-inset-top))) max(1.5rem, env(safe-area-inset-right)) max(2.5rem, calc(2rem + env(safe-area-inset-bottom))) max(1.5rem, env(safe-area-inset-left)) !important;
                gap: 0 !important;
                opacity: 0 !important;
                visibility: hidden !important;
                transform: translateY(100%) !important;
                transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0.3s, transform 0.3s cubic-bezier(0.4,0,0.2,1) !important;
                box-shadow: none !important;
                border-radius: 0 !important;
                margin: 0 !important;
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch !important;
                pointer-events: none !important;
                list-style: none !important;
            }
            .nav-links.active {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
                pointer-events: auto !important;
            }
            .nav-mobile-logo { display: none !important; }
            .nav-links > li { border-bottom: 1px solid rgba(11,22,53,0.06) !important; flex-shrink: 0 !important; }
            .nav-links > li:last-child { border-bottom: none !important; }
            .nav-links > li > a { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 0.9rem 0 !important; font-size: 1.0625rem !important; font-weight: 600 !important; color: var(--navy) !important; min-height: 52px !important; border-radius: 0 !important; margin: 0 !important; -webkit-tap-highlight-color: transparent !important; transition: color 0.2s !important; }
            .nav-links > li > a:hover, .nav-links > li > a:active { color: var(--gold) !important; background: transparent !important; }
            .nav-dropdown-content {
                position: static !important;
                transform: none !important;
                display: block !important;
                box-shadow: none !important;
                background: rgba(11,22,53,0.03) !important;
                border: 1px solid rgba(11,22,53,0.07) !important;
                min-width: unset !important;
                width: 100% !important;
                max-width: 100% !important;
                border-radius: 12px !important;
                max-height: 0 !important;
                overflow: hidden !important;
                padding: 0 !important;
                margin: 0 !important;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: none !important;
                transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.25s, margin 0.25s !important;
            }
            .nav-dropdown.open .nav-dropdown-content,
            .nav-dropdown.open:hover .nav-dropdown-content {
                max-height: 400px !important;
                overflow: visible !important;
                padding: 0.5rem !important;
                margin: 0.35rem 0 0.5rem !important;
                pointer-events: auto !important;
            }
            .nav-dropdown-content .nav-dropdown-label { display: block !important; font-size: 0.625rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; color: var(--muted) !important; padding: 0.5rem 0.75rem 0.35rem !important; margin-bottom: 0.15rem !important; border-bottom: 1px solid rgba(11,22,53,0.07) !important; white-space: nowrap !important; }
            .nav-dropdown > a::after { transform: rotate(45deg) !important; border-right: 2.5px solid currentColor !important; border-bottom: 2.5px solid currentColor !important; width: 8px !important; height: 8px !important; }
            .nav-dropdown.open > a::after { transform: rotate(-135deg) !important; }
            .nav-dropdown-content a {
                display: flex !important;
                align-items: center !important;
                gap: 0.65rem !important;
                padding: 0.8rem 0.85rem !important;
                font-size: 0.9375rem !important;
                font-weight: 500 !important;
                color: #334155 !important;
                border-left: none !important;
                border-radius: 9px !important;
                margin: 0.15rem 0 !important;
                min-height: 48px !important;
                -webkit-tap-highlight-color: transparent !important;
                white-space: normal !important;
                transition: color 0.18s, background 0.18s !important;
            }
            .nav-dropdown-content a:hover, .nav-dropdown-content a:active { color: var(--navy) !important; background: rgba(11,22,53,0.06) !important; }
            .mobile-cta-li { display: block !important; margin-top: 1.5rem !important; padding-top: 1.5rem !important; border-top: 1px solid rgba(11,22,53,0.08) !important; width: 100% !important; }
            li.mobile-cta-li > a { display: flex !important; justify-content: center !important; align-items: center !important; text-align: center !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; background: var(--navy) !important; color: var(--white) !important; padding: 1rem 1.5rem !important; border-radius: 14px !important; font-weight: 700 !important; min-height: 52px !important; font-size: 1rem !important; -webkit-tap-highlight-color: transparent !important; }
            li.mobile-cta-li > a:hover, li.mobile-cta-li > a:active { background: var(--gold) !important; color: var(--white) !important; }
            .mobile-menu-btn { display: flex !important; }
            .cta-nav { display: none !important; }
            
            /* Form / Footer fixes */
            .cta-box .form-row { grid-template-columns: 1fr !important; }
            .footer-grid { grid-template-columns: 1fr 1fr !important; gap: var(--space-md) !important; }
            .footer-brand { grid-column: 1 / -1 !important; }
        }
        @media (max-width: 768px) {
            .nav-inner { padding: 0.5rem 1rem !important; min-height: 56px !important; }
            .logo-img { height: 48px !important; }
            .cta-box { margin-left: 0.75rem !important; margin-right: 0.75rem !important; max-width: none !important; }
            
            .footer-grid { grid-template-columns: 1fr !important; }
            .footer-brand { grid-column: auto !important; }
            .footer-bottom { flex-direction: column !important; gap: 1rem !important; text-align: center !important; }
            .footer-bottom-left { flex-direction: column !important; gap: 0.75rem !important; }
        }
        @media (max-width: 480px) {
            .nav-inner { padding: 0.5rem 0.75rem !important; min-height: 52px !important; }
            .logo-img { height: 40px !important; }
            .cta-box { margin-left: 0 !important; margin-right: 0 !important; max-width: 100% !important; border-radius: 12px !important; padding: 1.5rem !important; }
            .cta-grid { gap: 1.5rem !important; }
        }

