
        :root {
            --primary-bg: #ffffff;
            --secondary-bg: #111827;
            --accent-color: #005FD8;
            --text-primary: #111827;
            --text-secondary: #4b5563;
            --text-inverse: #ffffff;
            --text-inverse-muted: #d1d5db;
            --border-soft: #e5e7eb;
            --border-ambient: rgba(17, 24, 39, 0.15);
            --font-sans: 'Manrope', sans-serif;
            --font-serif: 'Playfair Display', serif;
            --font-size-headline: clamp(2.25rem, 4vw, 3rem);
            --font-size-hero: var(--font-size-headline);
            --font-size-subhero: clamp(2.125rem, 4.25vw, 3rem);
            --font-size-description: clamp(1rem, 1.2vw, 1.125rem);
            --font-size-body: var(--font-size-description);
            --font-size-support: clamp(0.8rem, 1vw, 0.95rem);
            --font-size-meta: clamp(0.7rem, 0.9vw, 0.85rem);
            --badge-font-size: 0.75rem;
            --badge-padding: 0.35rem 0.9rem;
            --badge-letter-spacing: 0.08em;
            --badge-font-weight: 600;
            --section-headline-font-size: var(--font-size-headline);
            --section-headline-font-weight: 400;
            --section-headline-line-height: 1.2;
            --section-headline-letter-spacing: -0.01em;
            --section-description-font-size: var(--font-size-body);
            --section-description-font-weight: 300;
            --section-description-line-height: 1.8;
            --section-content-max-width: min(1180px, 100%);
            --section-description-max-width: min(100ch, var(--section-content-max-width));
            --section-padding-y: clamp(3rem, 6vw, 4rem);
            --section-padding-x: 6%;
            --section-stack-gap: 1.5rem;
            --radius-md: 8px;
            --radius-pill: 999px;
            --insights-slide-width: clamp(420px, 66.666%, 780px);
            --insights-slide-gap: clamp(1.25rem, 3vw, 2rem);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--primary-bg);
            color: var(--text-primary);
            font-family: var(--font-sans);
            line-height: 1.8;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

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

        button {
            font: inherit;
            color: inherit;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        :focus-visible {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
        }

        @media (min-width: 769px) {
            body {
                cursor: none;
            }
        }

        .cursor,
        .cursor-dot {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9999;
        }

        .cursor {
            width: 32px;
            height: 32px;
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            transition: width 0.3s ease, height 0.3s ease, border-width 0.3s ease, background-color 0.3s ease;
            background-color: transparent;
        }

        .cursor-dot {
            width: 6px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--accent-color);
        }

        .cursor.grow {
            width: 60px;
            height: 60px;
            border-width: 2px;
            background-color: rgba(212, 175, 55, 0.1);
        }

        @media (max-width: 768px) {
            .cursor,
            .cursor-dot {
                display: none;
            }
        }

        main {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hero-section {
            --section-padding-y: 0;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: var(--section-padding-y) var(--section-padding-x);
            text-align: center;
            position: relative;
            background-image: var(--hero-background-image);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text-inverse);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                165deg,
                rgba(10, 15, 30, 0.75) 0%,
                rgba(15, 23, 42, 0.70) 35%,
                rgba(20, 30, 48, 0.68) 65%,
                rgba(12, 18, 35, 0.72) 100%
            );
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(
                    ellipse 800px 600px at top right,
                    rgba(0, 95, 216, 0.08) 0%,
                    transparent 60%
                ),
                radial-gradient(
                    ellipse 600px 500px at bottom left,
                    rgba(30, 58, 138, 0.06) 0%,
                    transparent 55%
                ),
                linear-gradient(
                    to bottom,
                    transparent 0%,
                    rgba(0, 0, 0, 0.15) 100%
                );
            z-index: 0;
        }

        .hero-section > * {
            position: relative;
            z-index: 1;
        }

        .hero-section .hero-message {
            max-width: min(920px, 90%);
            color: var(--text-inverse);
            text-align: center;
            align-items: center;
            gap: clamp(1.1rem, 2vw, 1.4rem);
            animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section .hero-message .section-description {
            color: rgba(255, 255, 255, 1);
            font-size: clamp(1.05rem, 1.35vw, 1.2rem);
            line-height: 1.75;
            font-weight: 300;
            letter-spacing: 0.015em;
            max-width: 68ch;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }

        .eyebrow {
            font-size: var(--font-size-support);
            font-weight: 600;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }

        .hero-section .eyebrow {
            color: rgba(255, 255, 255, 1);
            letter-spacing: 0.22em;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0;
        }

        .hero-section .eyebrow::before,
        .hero-section .eyebrow::after {
            content: '';
            width: 32px;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.7) 50%,
                transparent 100%
            );
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        }

        .section-headline {
            font-family: var(--font-serif);
            font-size: var(--section-headline-font-size);
            font-weight: var(--section-headline-font-weight);
            line-height: var(--section-headline-line-height);
            letter-spacing: var(--section-headline-letter-spacing);
            margin: 0;
            color: currentColor;
            text-shadow: none;
        }

        .hero-section .section-headline {
            font-size: clamp(2.75rem, 5.5vw, 4.25rem);
            font-weight: 300;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: rgba(255, 255, 255, 1);
            text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .section-description {
            font-size: var(--section-description-font-size);
            line-height: var(--section-description-line-height);
            font-weight: var(--section-description-font-weight);
            color: var(--text-secondary);
            max-width: var(--section-description-max-width);
            margin: 0;
        }

        .section-block {
            padding: var(--section-padding-y) var(--section-padding-x);
            position: relative;
        }

        .section-block::after,
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(80%, 960px);
            height: 1px;
            background: linear-gradient(
                90deg,
                rgba(212, 175, 55, 0) 0%,
                rgba(212, 175, 55, 0.65) 50%,
                rgba(212, 175, 55, 0) 100%
            );
            opacity: 0.85;
            pointer-events: none;
            z-index: 5;
        }

        .section-stack {
            display: flex;
            flex-direction: column;
            gap: var(--section-stack-gap);
            max-width: var(--section-description-max-width);
            color: var(--text-primary);
        }

        .section-stack.centered {
            text-align: center;
            align-items: center;
        }

        .expertise-header.section-stack.centered,
        .playbook-intro.section-stack.centered {
            text-align: left;
            align-items: flex-start;
        }

        .expertise-header.section-stack.centered .eyebrow,
        .expertise-header.section-stack.centered .section-headline,
        .expertise-header.section-stack.centered .section-description,
        .playbook-intro.section-stack.centered .eyebrow,
        .playbook-intro.section-stack.centered .section-headline,
        .playbook-intro.section-stack.centered .section-description {
            text-align: left;
        }

        .section-stack .section-description {
            color: var(--text-secondary);
        }

        .section-stack > .eyebrow {
            margin-bottom: 0;
        }

        .chips {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.65rem;
            margin-top: clamp(1.75rem, 3vw, 2.25rem);
        }

        .chip {
            font-size: clamp(0.78rem, 0.9vw, 0.85rem);
            padding: 0.55rem 1.35rem;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(148, 163, 184, 0.25);
            color: rgba(241, 245, 249, 0.90);
            background: linear-gradient(
                135deg,
                rgba(15, 23, 42, 0.50) 0%,
                rgba(30, 41, 59, 0.40) 100%
            );
            backdrop-filter: blur(16px);
            font-weight: 500;
            letter-spacing: 0.025em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .chip:hover {
            background: linear-gradient(
                135deg,
                rgba(212, 175, 55, 0.22) 0%,
                rgba(212, 175, 55, 0.12) 100%
            );
            border-color: rgba(212, 175, 55, 0.45);
            color: rgba(255, 255, 255, 0.98);
            transform: translateY(-3px);
            box-shadow: 
                0 8px 24px rgba(212, 175, 55, 0.25),
                0 4px 12px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .scroll-indicator-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            bottom: clamp(2rem, 4vh, 3rem);
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-inverse);
            opacity: 0.85;
        }

        .scroll-indicator-container:hover {
            opacity: 1;
            transform: translateX(-50%) translateY(-4px);
        }

        .scroll-indicator-container:active {
            transform: translateX(-50%) scale(0.96);
        }

        .scroll-text {
            font-size: clamp(0.7rem, 0.8vw, 0.75rem);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(255, 255, 255, 1);
        }

        .scroll-arrow {
            width: 2px;
            height: 36px;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.4) 0%,
                rgba(255, 255, 255, 1) 100%
            );
            position: relative;
            border-radius: var(--radius-pill);
        }

        .scroll-arrow::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: -4px;
            width: 10px;
            height: 10px;
            border-right: 2px solid rgba(255, 255, 255, 1);
            border-bottom: 2px solid rgba(255, 255, 255, 1);
            transform: rotate(45deg);
            animation: bounce 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0) rotate(45deg);
                opacity: 1;
            }
            50% {
                transform: translateY(-8px) rotate(45deg);
                opacity: 0.6;
            }
        }

        .client-outcomes-section {
            background: #101827;
            color: var(--text-inverse);
            position: relative;
            overflow: hidden;
        }

        .client-outcomes-wrapper {
            max-width: var(--section-content-max-width);
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: clamp(2.5rem, 4vw, 3rem);
        }

        .client-outcomes-header.section-stack {
            text-align: left;
            align-items: flex-start;
        }

        .client-outcomes-header .eyebrow {
            color: rgba(226, 232, 240, 0.7);
            letter-spacing: 0.12em;
        }

        .client-outcomes-header .section-headline {
            color: var(--text-inverse);
        }

        .client-outcomes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: clamp(1.75rem, 3vw, 2.5rem);
        }

        .client-outcome-card {
            background: rgba(15, 23, 42, 0.92);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 20px;
            padding: clamp(2rem, 3.5vw, 2.75rem);
            display: flex;
            flex-direction: column;
            gap: clamp(1rem, 2.5vw, 1.5rem);
            align-items: center;
            text-align: center;
            box-shadow: 0 18px 42px rgba(6, 12, 28, 0.35);
            position: relative;
            overflow: hidden;
            isolation: isolate;
            transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
            backdrop-filter: blur(14px);
        }

        .client-outcome-card:hover,
        .client-outcome-card:focus-within {
            transform: translateY(-12px);
            border-color: rgba(148, 163, 184, 0.4);
            box-shadow: 0 26px 68px rgba(5, 12, 28, 0.45);
        }

        .client-outcome-topline {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: clamp(0.68rem, 0.85vw, 0.82rem);
            color: rgba(226, 232, 240, 0.66);
            position: relative;
            text-align: center;
        }

        .client-outcome-topline::before {
            content: '';
            width: 48px;
            height: 2px;
            background: rgba(148, 163, 184, 0.45);
            border-radius: 999px;
            display: block;
            margin-bottom: 0.35rem;
        }

        .client-outcome-meta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(148, 163, 184, 0.35);
            padding: 0.45rem 1.25rem;
            letter-spacing: 0.24em;
            background: rgba(15, 23, 42, 0.7);
            box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.45), 0 8px 20px rgba(5, 10, 22, 0.35);
            color: rgba(226, 232, 240, 0.88);
        }

        .client-outcome-meta::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(96, 165, 250, 0.8);
            box-shadow: 0 0 12px rgba(96, 165, 250, 0.45);
        }

        .client-outcome-card h3 {
            font-family: var(--font-serif);
            font-size: clamp(1.3rem, 2.1vw, 1.6rem);
            font-weight: 400;
            letter-spacing: -0.01em;
            line-height: 1.3;
            text-align: center;
            color: rgba(255, 255, 255, 0.94);
        }

        .client-outcome-card p {
            color: rgba(226, 232, 240, 0.9);
            font-size: clamp(0.95rem, 1.05vw, 1.05rem);
            line-height: 1.6;
            margin: 0 auto;
            max-width: 42ch;
        }

        .client-outcome-result {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(148, 163, 184, 0.24);
            display: flex;
            flex-direction: column;
            gap: clamp(0.65rem, 1.2vw, 0.85rem);
            color: rgba(226, 232, 240, 0.8);
            align-items: center;
            text-align: center;
        }

        .client-outcome-result span {
            display: block;
        }

        .client-outcome-result .label {
            text-transform: uppercase;
            letter-spacing: 0.22em;
            font-size: clamp(0.65rem, 0.8vw, 0.75rem);
            color: rgba(191, 219, 254, 0.85);
        }

        .client-outcome-result .value {
            font-family: var(--font-sans);
            font-size: clamp(0.95rem, 1.05vw, 1.05rem);
            line-height: 1.5;
        }

        @media (max-width: 1200px) {
            .client-outcomes-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .client-outcomes-wrapper {
                gap: clamp(0.9rem, 1.8vw, 1.29rem);
            }

            .client-outcomes-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 540px) {
            .client-outcome-card {
                padding: 1.5rem;
            }
        }

        .insights-carousel-section {
            background: #ffffff;
            background-image: 
                radial-gradient(at 0% 0%, rgba(11, 31, 84, 0.03) 0, transparent 50%), 
                radial-gradient(at 100% 100%, rgba(15, 23, 42, 0.03) 0, transparent 50%);
            position: relative;
            overflow: hidden;
            --insights-visible-next: 20%;
            --insights-slide-gap: clamp(0.75rem, 2vw, 1.25rem);
            --insights-slide-width: max(
                360px,
                calc(100% - (var(--insights-visible-next) + var(--insights-slide-gap)))
            );
        }

        @media (min-width: 1340px) {
            .insights-carousel-section {
                --insights-slide-width: max(
                    360px,
                    min(
                        calc(100% - (var(--insights-visible-next) + var(--insights-slide-gap))),
                        calc(
                            (var(--section-content-max-width) + (100vw - 2 * var(--section-padding-x))) / 2
                        ),
                        calc(100vw - var(--section-padding-x))
                    )
                );
            }
        }

        .insights-carousel-section.section-block {
            padding-top: var(--section-padding-y);
            padding-bottom: var(--section-padding-y);
            padding-right: 0;
        }

        .insights-carousel-section::before {
            content: none;
        }

        .insights-carousel-inner {
            position: relative;
            z-index: 1;
            max-width: none;
            margin: 0;
            padding-left: 0;
            padding-right: 0;
            display: flex;
            flex-direction: column;
            gap: clamp(0.75rem, 1.5vw, 1rem);
        }

        .insights-carousel-topline {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--section-stack-gap);
        }

        .insights-carousel-topline .eyebrow {
            margin-bottom: 0;
        }

        .insights-carousel-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .insights-carousel-eyebrow::before {
            content: none;
        }

        .insights-carousel-topline .section-headline {
            font-size: clamp(2.2rem, 4vw, 2.8rem);
            color: #0f172a;
        }

        .insights-carousel-wrapper {
            position: relative;
            overflow: hidden;
            cursor: grab;
            transition: cursor 0.2s ease;
        }

        .insights-carousel-wrapper.is-dragging {
            cursor: grabbing;
        }

        .insights-carousel-wrapper.is-dragging .insights-carousel-track {
            cursor: grabbing;
            -webkit-user-select: none;
            user-select: none;
        }

        .insights-carousel-track {
            display: flex;
            gap: var(--insights-slide-gap);
            transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .insights-carousel-slide {
            --insights-slide-offset: clamp(1.5rem, 4vw, 2.75rem);
            position: relative;
            flex: 0 0 var(--insights-slide-width);
            max-width: var(--insights-slide-width);
            width: var(--insights-slide-width);
            min-height: clamp(368px, 48vw, 483px);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 34px 70px rgba(15, 23, 42, 0.32);
            isolation: isolate;
            transition: box-shadow 0.4s ease;
        }

        .insights-carousel-slide:hover {
            box-shadow: 0 44px 80px rgba(15, 23, 42, 0.45);
        }

        .insights-carousel-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(10, 17, 34, 0.78) 0%, rgba(15, 23, 42, 0.32) 48%, rgba(15, 23, 42, 0.58) 100%);
            mix-blend-mode: multiply;
            pointer-events: none;
            z-index: 1;
        }



        .insights-slide-image {
            position: absolute;
            top: 0;
            bottom: 0;
            left: calc(-1 * var(--insights-slide-offset));
            width: calc(80% + var(--insights-slide-offset));
            height: 100%;
            object-fit: cover;
            filter: saturate(1.02) contrast(1.03);
            z-index: 0;
            border-radius: 0;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .insights-carousel-slide:hover .insights-slide-image {
            transform: scale(1.05);
        }

        .insights-slide-ribbon {
            position: absolute;
            top: clamp(1rem, 2.75vw, 1.75rem);
            left: clamp(1rem, 2.75vw, 1.75rem);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: var(--badge-padding);
            background: rgba(29, 78, 216, 0.85);
            color: rgba(255, 255, 255, 0.95);
            border-radius: 6px;
            font-size: var(--badge-font-size);
            font-weight: var(--badge-font-weight);
            letter-spacing: var(--badge-letter-spacing);
            text-transform: uppercase;
            z-index: 5;
            box-shadow: 0 8px 24px rgba(29, 78, 216, 0.3);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .insights-carousel-slide:hover .insights-slide-ribbon {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(29, 78, 216, 0.4);
        }

        .insights-slide-card {
            position: absolute;
            top: 50%;
            right: var(--insights-slide-offset);
            transform: translateY(-50%);
            max-width: min(420px, 48%);
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            padding: clamp(1.2rem, 2.2vw, 1.6rem) clamp(1.5rem, 3vw, 2.2rem);
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
            color: #0f172a;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: clamp(0.5rem, 1.5vw, 0.8rem);
            backdrop-filter: blur(24px) saturate(1.5);
            -webkit-backdrop-filter: blur(24px) saturate(1.5);
            transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        }
        
        .insights-carousel-slide:hover .insights-slide-card {
            border-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 32px 70px rgba(15, 23, 42, 0.25);
            transform: translateY(calc(-50% - 8px)) scale(1.01);
        }

        .insights-slide-result {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            font-size: clamp(0.9rem, 1vw, 1rem);
            line-height: 1.6;
            color: rgba(15, 23, 42, 0.85);
            border-left: 3px solid #0b1f54;
            padding-left: 1rem;
            margin-top: 0;
            background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, transparent 100%);
            padding-top: 0.35rem;
            padding-bottom: 0.35rem;
            border-radius: 0 8px 8px 0;
        }

        .insights-slide-result .label {
            font-size: 0.78rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #0b1f54;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .insights-slide-result .label::before {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .insights-slide-result .value {
            font-weight: 600;
        }

        .insights-slide-card h3 {
            font-family: var(--font-serif);
            font-size: clamp(1.55rem, 3vw, 2rem);
            line-height: 1.3;
            font-weight: 500;
            letter-spacing: -0.01em;
            color: #0f172a;
        }

        .insights-slide-card p {
            font-size: clamp(0.95rem, 1.1vw, 1.05rem);
            line-height: 1.6;
            color: rgba(15, 23, 42, 0.75);
        }

        .insights-slide-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: #0b1f54;
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
            margin-top: 0;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            width: fit-content;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.25rem 0;
            position: relative;
        }

        .insights-slide-link::after {
            content: '';
            position: absolute;
            bottom: 0.35rem;
            left: 0;
            width: 0%;
            height: 2px;
            background: #0b1f54;
            transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .insights-slide-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .insights-slide-link:hover {
            color: #1a3a8a;
            gap: 0.85rem;
        }

        .insights-slide-link:hover::after {
            width: 100%;
        }

        .insights-slide-link:hover svg {
            transform: translateX(4px);
        }

        .insights-carousel-controls {
            display: flex;
            align-items: center;
            
            gap: 1.5rem;
        }

        .insights-carousel-nav {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .insights-carousel-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(15, 23, 42, 0.15);
            background: transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(0);
        }

        .insights-carousel-inner:hover .insights-carousel-arrow {
            opacity: 1;
        }

        .insights-carousel-arrow:hover {
            background: rgba(15, 23, 42, 0.05);
            border-color: rgba(15, 23, 42, 0.3);
        }

        .insights-carousel-arrow svg {
            width: 16px;
            height: 16px;
            stroke: rgba(15, 23, 42, 0.6);
            stroke-width: 1.5;
            transition: stroke 0.3s ease;
        }

        .insights-carousel-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .insights-carousel-arrow:disabled:hover {
            background: transparent;
            border-color: rgba(15, 23, 42, 0.15);
        }

        .insights-carousel-dots {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .insights-carousel-dot {
            width: 32px;
            height: 10px;
            border-radius: 6px;
            background: rgba(11, 31, 84, 0.15);
            transition: width 0.4s ease, background 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
            padding: 0;
        }

        .insights-carousel-dot.is-active {
            width: 64px;
            background: rgba(11, 31, 84, 0.25);
        }

        .insights-carousel-dot::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: var(--progress, 0%);
            height: 100%;
            background: #0b1f54;
            transition: width 0.1s linear;
        }

        .insights-carousel-dot.is-active {
            background: rgba(11, 31, 84, 0.25);
            border-color: var(--accent-color);
            transform: scale(1.15);
        }

        .insights-carousel-dot.is-active.is-progressing::before {
            width: 100%;
        }

        .insights-carousel-dot:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 95, 216, 0.35);
        }

        @media (max-width: 1080px) {
            .insights-slide-card {
                max-width: min(460px, 58%);
            }
        }

        @media (max-width: 960px) {
            .insights-carousel-arrow {
                opacity: 1;
            }

            .insights-carousel-section {
                --insights-slide-gap: clamp(1rem, 4vw, 1.5rem);
            }

            .insights-carousel-track {
                gap: var(--insights-slide-gap);
            }

            .insights-carousel-section.section-block {
                padding-right: var(--section-padding-x);
            }

            .insights-carousel-inner {
                padding-left: clamp(1.5rem, 6vw, 2.5rem);
                padding-right: clamp(1.5rem, 6vw, 2.5rem);
            }

            .insights-carousel-slide {
                min-height: clamp(322px, 86vw, 460px);
                --insights-slide-offset: clamp(1.25rem, 5vw, 1.75rem);
                flex: 0 0 var(--insights-slide-width);
                max-width: var(--insights-slide-width);
                width: var(--insights-slide-width);
            }

            .insights-carousel-slide::before {
                opacity: 0.85;
            }

            .insights-slide-card {
                max-width: min(420px, 65%);
            }

            .insights-slide-ribbon {
                top: clamp(0.85rem, 4vw, 1.5rem);
                left: clamp(0.85rem, 4vw, 1.5rem);
                margin: 0;
            }
        }

        @media (max-width: 720px) {
            .insights-carousel-controls {
                flex-direction: column;
                gap: 1rem;
            }

            .insights-carousel-nav {
                order: 2;
            }

            .insights-carousel-dots {
                order: 1;
            }

            .insights-carousel-arrow {
                width: 36px;
                height: 36px;
            }

            .insights-carousel-section {
                --insights-visible-next: 0%;
                --insights-slide-gap: 1rem;
            }

            .insights-carousel-track {
                gap: var(--insights-slide-gap);
            }

            .insights-carousel-slide {
                border-radius: 12px;
                flex: 0 0 100%;
                max-width: 100%;
                width: 100%;
            }

            .insights-slide-card {
                width: calc(100% - (2 * var(--insights-slide-offset)));
                right: var(--insights-slide-offset);
                left: auto;
                padding: clamp(1.1rem, 5vw, 1.4rem);
            }

            .insights-slide-card h3 {
                font-size: clamp(1.35rem, 6vw, 1.65rem);
            }
        }

        @media (max-width: 540px) {
            .insights-carousel-slide {
                min-height: clamp(322px, 109vw, 414px);
            }

            .insights-slide-ribbon {
                top: clamp(0.75rem, 8vw, 1.35rem);
                left: clamp(0.75rem, 8vw, 1.35rem);
            }
        }

        .explore-more-section {
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .explore-more-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 10% 10%, rgba(11, 31, 84, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(11, 31, 84, 0.03) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        .explore-more-wrapper {
            max-width: var(--section-content-max-width);
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: clamp(2.5rem, 5vw, 3.5rem);
        }

        .explore-more-section .section-stack.centered {
            text-align: left;
            align-items: flex-start;
            max-width: 800px;
        }

        .explore-more-section .section-stack.centered .eyebrow,
        .explore-more-section .section-stack.centered .section-headline,
        .explore-more-section .section-stack.centered .section-description {
            text-align: left;
        }

        .explore-more-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
            gap: clamp(1.5rem, 3vw, 2.5rem);
            align-items: stretch;
        }

        .explore-spotlight-card {
            position: relative;
            background: linear-gradient(145deg, #0b1f54 0%, #1a2a44 100%);
            color: #ffffff;
            border-radius: 24px;
            padding: clamp(1.65rem, 3vw, 2.1rem);
            display: flex;
            flex-direction: column;
            
            gap: clamp(0.9rem, 1.8vw, 1.29rem);
            box-shadow: 0 30px 70px rgba(11, 31, 84, 0.25);
            overflow: hidden;
            isolation: isolate;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
        }

        .explore-spotlight-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 45px 90px rgba(11, 31, 84, 0.35);
        }

        .explore-spotlight-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(
                800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.12), 
                transparent 40%
            );
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
            pointer-events: none;
        }

        .explore-spotlight-card:hover::before {
            opacity: 1;
        }

        .explore-spotlight-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
            z-index: 0;
        }

        .explore-spotlight-card:hover::after {
            transform: translateX(100%);
        }

        .explore-spotlight-card .next-label {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.75rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 700;
        }

        .explore-spotlight-card .next-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: linear-gradient(to right, #ffffff, transparent);
            opacity: 0.4;
        }

        .explore-spotlight-card .spotlight-body {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: clamp(0.45rem, 1.2vw, 0.66rem);
            max-width: 48ch;
        }

        .explore-spotlight-card h3 {
            font-family: var(--font-serif);
            font-size: clamp(1.85rem, 3vw, 2.35rem);
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.15;
            color: #ffffff;
            margin: 0;
        }

        .explore-spotlight-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: clamp(1rem, 1.1vw, 1.1rem);
            line-height: 1.65;
            font-weight: 300;
            margin: 0;
        }

        .explore-spotlight-card .spotlight-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: clamp(0.78rem, 0.9vw, 0.85rem);
    transition: color 0.3s ease;
    box-shadow: none;
    position: relative;
    z-index: 1;
    text-decoration: underline;
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.35em;
}

.explore-spotlight-card .spotlight-cta::after {
    content: '↗';
    font-size: 0.95rem;
    transform: translateY(-1px);
}

.explore-spotlight-card .spotlight-cta:hover,
.explore-spotlight-card .spotlight-cta:focus-visible {
    color: #f8d26c;
}

        .explore-side-stack {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1rem, 2vw, 1.5rem);
        }

        .explore-tile {
            position: relative;
            min-height: clamp(132px, 16.8vw, 168px);
            border-radius: 24px;
            overflow: hidden;
            color: #ffffff;
            display: flex;
            align-items: flex-end;
            box-shadow: 0 15px 40px rgba(11, 31, 84, 0.15);
            background-size: cover;
            background-position: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            isolation: isolate;
        }

        .explore-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 31, 84, 0.9) 0%, rgba(11, 31, 84, 0.4) 60%, transparent 100%);
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        .explore-tile::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(2px);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .explore-tile:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px rgba(11, 31, 84, 0.25);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .explore-tile:hover::after {
            opacity: 1;
        }

        .explore-tile .tile-content {
            position: relative;
            z-index: 2;
            padding: clamp(1.05rem, 1.8vw, 1.35rem);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            width: 100%;
            transform: translateY(10px);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .explore-tile:hover .tile-content {
            transform: translateY(0);
        }

        .explore-tile .tile-eyebrow {
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 700;
        }

        .explore-tile h3 {
            font-family: var(--font-serif);
            font-size: clamp(1.4rem, 2vw, 1.65rem);
            font-weight: 400;
            margin: 0;
            color: #ffffff;
            line-height: 1.3;
        }

        .explore-tile .tile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: clamp(0.78rem, 0.9vw, 0.85rem);
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.explore-tile .tile-link::after {
    content: '↗';
    font-size: 0.95rem;
}

.explore-tile:hover .tile-link,
.explore-tile:focus-within .tile-link {
    color: #ffffff;
}

        @media (max-width: 1024px) {
            .explore-more-grid {
                grid-template-columns: 1fr;
            }
        }

        .playbook-section {
            background-color: var(--primary-bg);
            color: var(--text-primary);
        }

        .playbook-wrapper {
            max-width: var(--section-content-max-width);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.25rem;
            text-align: left;
        }

        .playbook-intro {
            text-align: left;
            max-width: var(--section-content-max-width);
            margin: 0;
        }

        .playbook-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
            width: 100%;
        }

        .playbook-card-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s 0.2s;
            width: 100%;
            height: 300px;
            flex-shrink: 0;
            border: 1px solid rgba(156, 163, 175, 0.2);
            display: block;
            color: inherit;
            text-decoration: none;
        }

        .playbook-card-wrapper:hover,
        .playbook-card-wrapper:focus-within,
        .playbook-card-wrapper.touch-active {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            z-index: 100;
            transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s 0s;
        }

        .playbook-card-wrapper .background-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: filter 0.6s ease;
            filter: brightness(0.65);
        }

        .playbook-card-wrapper:hover .background-image,
        .playbook-card-wrapper:focus-within .background-image,
        .playbook-card-wrapper.touch-active .background-image {
            filter: brightness(0.85);
        }

        .playbook-card-wrapper .tag {
            display: inline-block;
            background-color: #0b1f54;
            color: var(--text-inverse);
            padding: var(--badge-padding);
            border-radius: 4px;
            font-size: var(--badge-font-size);
            font-weight: var(--badge-font-weight);
            letter-spacing: var(--badge-letter-spacing);
            text-transform: uppercase;
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .playbook-card-wrapper .box-content {
            position: absolute;
            inset: 0;
            color: var(--text-inverse);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            gap: clamp(1rem, 2.5vw, 1.5rem);
            padding: 20px 20px 20px;
            z-index: 5;
            text-align: center;
        }

        .playbook-card-wrapper .content-inner {
            position: relative;
            transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            margin-top: 0;
            z-index: 1;
        }

        .playbook-card-wrapper:hover .content-inner,
        .playbook-card-wrapper:focus-within .content-inner,
        .playbook-card-wrapper.touch-active .content-inner {
            transform: translateY(-8px);
        }

        .playbook-card-wrapper .box-content::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(17, 24, 39, 0.18) 0%, rgba(17, 24, 39, 0.65) 60%, rgba(17, 24, 39, 0.78) 100%);
            transition: opacity 0.4s ease;
            opacity: 0.9;
            z-index: 0;
        }

        .playbook-card-wrapper:hover .box-content::before,
        .playbook-card-wrapper:focus-within .box-content::before,
        .playbook-card-wrapper.touch-active .box-content::before {
            opacity: 1;
        }

        .playbook-card-wrapper .title {
            font-size: 1.25em;
            font-weight: 400;
            color: var(--text-inverse);
            line-height: 1.3;
            font-family: var(--font-serif);
            text-shadow: none;
        }

        .playbook-card-wrapper .description {
            font-size: 0.9em;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            margin-top: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.4s ease-out, opacity 0.4s ease-out, margin-top 0.4s ease-out;
            text-shadow: none;
            text-align: center;
        }

        .playbook-card-wrapper:hover .description,
        .playbook-card-wrapper:focus-within .description,
        .playbook-card-wrapper.touch-active .description {
            max-height: 200px;
            opacity: 1;
            transition: max-height 0.5s ease-in, opacity 0.5s ease-in, margin-top 0.5s ease-in;
        }

        .playbook-card-wrapper .text-link {
            display: block;
            width: 100%;
            color: #ffffff;
            font-size: 0.82em;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-weight: 600;
            margin-top: 0.65rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.35);
            opacity: 0.85;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.65);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-decoration: none;
            position: relative;
            z-index: 5;
            pointer-events: auto;
            transition: opacity 0.4s ease, color 0.3s ease;
        }

        .playbook-card-wrapper .text-link:hover {
            color: var(--accent-color);
        }

        .playbook-card-wrapper:hover .text-link,
        .playbook-card-wrapper:focus-within .text-link,
        .playbook-card-wrapper.touch-active .text-link {
            opacity: 1;
        }

        .playbook-card-wrapper .text-link:focus-visible {
            color: var(--accent-color);
            outline: 2px solid var(--accent-color);
            outline-offset: 4px;
        }

        @media (max-width: 1024px) {
            .playbook-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .playbook-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-top: 2rem;
            }

            .playbook-card-wrapper {
                height: 320px;
            }
        }

        .content-section {
            max-width: var(--section-content-max-width);
            margin: 0 auto;
            background-color: var(--primary-bg);
        }

        .content-section.dark-theme {
            background-color: var(--secondary-bg);
            color: var(--text-inverse-muted);
        }

        .expertise-showcase {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 244, 246, 0.88) 100%), url('/assets/images/industries/pages/skyline-stewardship-atrium.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: var(--text-primary);
            position: relative;
            overflow: hidden;
        }

        .expertise-showcase::before,
        .expertise-frame {
            position: absolute;
            width: 240px;
            height: 240px;
            border: 1px solid rgba(0, 95, 216, 0.45);
            opacity: 0.35;
            transform: rotate(18deg);
            pointer-events: none;
            display: block;
            z-index: 0;
        }

        .expertise-showcase::before {
            top: -120px;
            left: -60px;
        }

        .expertise-frame--bottom {
            bottom: -140px;
            right: -40px;
        }

        .expertise-wrapper {
            max-width: var(--section-content-max-width);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .expertise-header {
            margin-bottom: clamp(2.5rem, 5vw, 3rem);
        }

        .expertise-header .eyebrow {
            color: rgba(0, 95, 216, 0.85);
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.75rem;
        }

        .expertise-card {
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 60%, rgba(243, 244, 246, 0.96) 100%);
            border: 1px solid rgba(209, 213, 219, 0.6);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
            color: var(--text-primary);
            transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
        }

        .expertise-card:hover,
        .expertise-card:focus-within {
            transform: translateY(-8px);
            border-color: rgba(156, 163, 175, 0.8);
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.94) 55%, rgba(243, 244, 246, 0.98) 100%);
            box-shadow: 0 22px 52px rgba(17, 24, 39, 0.18);
        }

        .expertise-badge {
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: var(--badge-padding);
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.85);
            color: var(--text-primary);
            border: 1px solid rgba(209, 213, 219, 0.7);
            font-size: var(--badge-font-size);
            font-weight: var(--badge-font-weight);
            letter-spacing: var(--badge-letter-spacing);
            text-transform: uppercase;
        }

        .expertise-card h3 {
            font-size: 1.35rem;
            font-weight: 500;
            letter-spacing: -0.01em;
            color: var(--text-primary);
        }

        .expertise-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(75, 85, 99, 0.85);
            font-weight: 300;
            margin: 0;
        }

        .expertise-card-footer {
            display: flex;
            
            align-items: center;
            gap: 1rem;
            margin-top: auto;
        }

        .expertise-link {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(17, 24, 39, 0.55);
        }

        .expertise-card:hover .expertise-link,
        .expertise-card:focus-within .expertise-link {
            color: var(--accent-color);
        }

        .expertise-card-arrow {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(209, 213, 219, 0.7);
            background: rgba(255, 255, 255, 0.85);
            color: var(--text-primary);
            transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
        }

        .expertise-card:hover .expertise-card-arrow,
        .expertise-card:focus-within .expertise-card-arrow {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(156, 163, 175, 0.85);
            color: var(--accent-color);
        }

        .expertise-card-arrow svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 1.8;
        }

        .strategic-finance-section {
            background-color: #ffffff;
            padding: 0;
            overflow: hidden;
            max-width: none;
            width: 100%;
            margin: 0;
        }

        .strategic-finance-section .two-column-layout {
            display: grid;
            grid-template-columns: 7fr 3fr;
            align-items: stretch;
            gap: 0;
            min-height: clamp(420px, 65vh, 620px);
            width: 100%;
        }

        .sector-dynamics-section .two-column-layout {
            grid-template-columns: 3fr 7fr;
            grid-template-areas: "visual text";
        }

        .sector-dynamics-section .text-column {
            grid-area: text;
        }

        .sector-dynamics-section .visual-column {
            grid-area: visual;
        }

        .strategic-finance-section .two-column-layout.two-column-layout--solo {
            grid-template-columns: 1fr;
            min-height: clamp(360px, 50vh, 520px);
        }

        .sector-dynamics-section .two-column-layout.two-column-layout--solo {
            grid-template-areas: "text";
        }

        .strategic-finance-section .text-column {
            display: flex;
            justify-content: center;
            align-items: stretch;
            padding: var(--section-padding-y) clamp(6%, 8vw, 9%);
        }

        .strategic-finance-section .content-card {
            width: 100%;
            max-width: none;
        }

        .strategic-finance-section .section-stack {
            max-width: none;
            width: min(760px, 100%);
            align-items: flex-start;
            text-align: left;
        }

        .strategic-finance-section .section-stack .section-description {
            max-width: none;
        }

        .strategic-finance-section .deliverables {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0;
        }

        .strategic-finance-section .deliverables li {
            font-size: var(--font-size-support);
            padding: 0.5rem 1.2rem;
            background-color: #f3f4f6;
            border: 1px solid #e5e7eb;
            border-radius: var(--radius-pill);
            font-weight: 500;
            letter-spacing: 0.02em;
            color: #4b5563;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .strategic-finance-section .deliverables li:hover,
        .strategic-finance-section .deliverables li:focus-visible {
            background-color: #e5e7eb;
            transform: translateY(-2px);
        }

        .strategic-finance-section .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.75rem, 5vw, 2.5rem);
            border: 1.5px solid var(--accent-color);
            border-radius: var(--radius-pill);
            background-color: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            letter-spacing: 0.04em;
            margin-top: clamp(1rem, 3vw, 1.5rem);
            gap: 0.75rem;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
            z-index: 1;
        }

        .strategic-finance-section .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--accent-color);
            transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: -1;
        }

        .strategic-finance-section .cta-button:hover,
        .strategic-finance-section .cta-button:focus-visible {
            color: var(--text-inverse);
            outline: none;
        }

        .strategic-finance-section .cta-button:hover::before,
        .strategic-finance-section .cta-button:focus-visible::before {
            width: 100%;
        }

        .strategic-finance-section .cta-button:focus-visible {
            box-shadow: 0 0 0 3px rgba(0, 95, 216, 0.35);
        }

        .strategic-finance-section .visual-column {
            position: relative;
            min-height: clamp(420px, 65vh, 620px);
            height: 100%;
            align-self: stretch;
        }

        .strategic-finance-section .visual-column::after {
            display: none;
        }

        .strategic-finance-section .visual-column img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .capabilities-conclusion {
            margin: 3rem auto 0;
            background-color: rgba(0, 95, 216, 0.08);
            padding: 1.75rem 2rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-soft);
            color: var(--text-primary);
            max-width: var(--section-content-max-width);
            text-align: center;
            box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
        }

        .content-section.dark-theme .capabilities-conclusion {
            color: var(--text-inverse);
            border-color: rgba(255, 255, 255, 0.16);
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(30, 64, 175, 0.45) 100%);
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
        }

        .expertise-showcase .capabilities-conclusion {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.78);
            border-color: rgba(209, 213, 219, 0.65);
            box-shadow: 0 18px 36px rgba(17, 24, 39, 0.1);
        }

        @media (max-width: 1200px) {
            .expertise-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

        }

        @media (max-width: 900px) {
            .expertise-grid {
                gap: 1.25rem;
            }

            .strategic-finance-section .two-column-layout {
                grid-template-columns: 1fr;
                min-height: unset;
            }

            .sector-dynamics-section .two-column-layout {
                grid-template-areas:
                    "text"
                    "visual";
            }

            .strategic-finance-section .text-column {
                padding: var(--section-padding-y) 8%;
                text-align: center;
                align-items: center;
            }

            .strategic-finance-section .content-card {
                align-items: center;
            }

            .strategic-finance-section .section-stack {
                align-items: center;
                text-align: center;
                width: min(520px, 100%);
            }

            .strategic-finance-section .section-stack .section-description {
                max-width: 48ch;
            }

            .strategic-finance-section .deliverables {
                justify-content: center;
            }

            .strategic-finance-section .cta-button {
                width: min(100%, 320px);
                margin-left: auto;
                margin-right: auto;
            }

            .strategic-finance-section .visual-column {
                min-height: clamp(280px, 48vh, 360px);
            }

            .strategic-finance-section .visual-column img {
                height: 100%;
                object-fit: cover;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 85vh;
                --section-padding-y: 0;
                background-attachment: scroll;
            }

            .hero-section .section-headline {
                font-size: clamp(2.25rem, 8vw, 3rem);
            }

            .hero-section .hero-message .section-description {
                font-size: clamp(1rem, 4vw, 1.1rem);
            }

            .chips {
                margin-top: 1.5rem;
            }

            .chip {
                font-size: 0.75rem;
                padding: 0.45rem 1.1rem;
            }

            .section-block::after,
            .hero-section::after {
                width: 88%;
            }

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

            .expertise-card {
                padding: 1.75rem;
            }

            .strategic-finance-section .text-column {
                padding: var(--section-padding-y) 7%;
                text-align: center;
                align-items: center;
            }

            .strategic-finance-section .deliverables {
                gap: 0.75rem;
            }

            .strategic-finance-section .deliverables li {
                padding: 0.45rem 1rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
    
.industries-inline-c0c9a9c20a76{--hero-background-image: url('/assets/images/industries/banners/skyline-confidant-construct.png');}
.industries-inline-abaa3bc7d1c1{background-image: url('https://images.unsplash.com/photo-1529429617124-aee711a2496b?auto=format&fit=crop&w=1200&q=80');}
.industries-inline-035d64dd8e62{background-image: url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&fit=crop&w=1200&q=80');}
.industries-inline-58491a85f1c9{background-image: url('https://images.unsplash.com/photo-1494415859740-21e878dd929d?auto=format&fit=crop&w=1200&q=80');}
.industries-inline-094b086c1663{background-image: url('https://images.unsplash.com/photo-1445263714773-6f0152781c05?auto=format&fit=crop&w=1200&q=80');}
.industries-inline-2dde3e2c3a44{background-image: url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1200&q=80');}
.industries-inline-2ed20de89cf6{background-image: url('https://images.unsplash.com/photo-1500840216050-6ffa99d75160?auto=format&fit=crop&w=1200&q=80');}
.industries-inline-cf70a237a75d{transform: translateX(0);}
.industries-inline-352ee6ef489b{background-image: url('/assets/images/industries/banners/netzero-horizon-lumina.png');}
.industries-inline-928bc68d1f3b{background-image: url('/assets/images/industries/banners/digital-backbone-signalwave.png');}
