
        :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: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.cursor.grow {
    width: 60px;
    height: 60px;
    border-width: 2px;
    background-color: rgba(0, 95, 216, 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 {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 960px);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 95, 216, 0) 0%,
        rgba(0, 95, 216, 0.65) 50%,
        rgba(0, 95, 216, 0) 100%
    );
    opacity: 0.85;
    pointer-events: none;
    z-index: 2;
}

.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;
}

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

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

.insights-slide-card {
    width: 420px !important;
    max-width: 48% !important;
    min-height: 300px !important;
}

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

@media (max-width: 960px) {
    .insights-slide-card {
        width: 420px !important;
        max-width: 65% !important;
    }
}

/* Service Overview Section */
.service-overview-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.service-overview-wrapper {
    max-width: var(--section-content-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 4vw, 3rem);
}

.service-overview-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.overview-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);
    color: var(--text-primary);
    margin: 0 auto var(--section-stack-gap) auto;
    text-align: center;
}

.overview-intro {
    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);
    margin: 0 auto;
    text-align: center;
}

.overview-context {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3rem, 5vw, 4rem);
}

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

.overview-block-text {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 400;
    margin: 0;
}

.overview-separator {
    width: min(80%, 960px);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(0, 95, 216, 0) 0%,
        rgba(0, 95, 216, 0.65) 50%,
        rgba(0, 95, 216, 0) 100%
    );
    opacity: 0.85;
    margin: 0 auto;
}

.overview-capabilities-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2.5rem);
}

.overview-capabilities-wrapper .section-stack {
    max-width: 720px;
    margin: 0 auto;
}

.overview-capabilities-wrapper .section-stack .eyebrow,
.overview-capabilities-wrapper .section-stack .section-headline,
.overview-capabilities-wrapper .section-stack .section-description {
    text-align: center;
}

.overview-capabilities-wrapper .section-headline {
    font-size: var(--section-headline-font-size);
}

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

.overview-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

.capability-card {
    padding: clamp(1.75rem, 2.5vw, 2rem);
    background: var(--primary-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 95, 216, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capability-card h4 {
    font-size: clamp(1rem, 1.1vw, 1.05rem);
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.capability-card p {
    font-size: var(--font-size-support);
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0;
}

@media (max-width: 1024px) {
    .overview-context {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .overview-capabilities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-overview-section {
        padding: clamp(2.5rem, 6vw, 3rem) clamp(1.25rem, 5vw, 1.5rem);
    }

    .service-overview-wrapper {
        gap: 2rem;
    }

    .overview-headline {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .overview-intro {
        font-size: clamp(0.95rem, 3vw, 1rem);
    }

    .overview-context {
        gap: 2rem;
    }

    .overview-block-text {
        font-size: 0.95rem;
    }

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

    .capability-card {
        padding: 1.5rem;
    }

    .capability-card h4 {
        font-size: 1rem;
    }

    .capability-card p {
        font-size: 0.875rem;
    }
}

.engagement-journey-section {
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.engagement-journey-wrapper {
    max-width: var(--section-content-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.engagement-journey-header.section-stack.centered {
    position: sticky;
    top: 2rem;
    align-items: flex-start;
    text-align: left;
}

.engagement-journey-header.section-stack.centered .section-headline,
.engagement-journey-header.section-stack.centered .section-description {
    text-align: left;
}

.engagement-journey-right {
    position: relative;
}

.engagement-collapse-btn {
    display: block;
    margin-left: auto;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #005FD8;
    background: none;
    border: none;
    padding: 0.25rem 0;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.engagement-collapse-btn:hover {
    opacity: 0.7;
}

.engagement-collapse-btn:focus {
    outline: 2px solid #005FD8;
    outline-offset: 2px;
}

.engagement-journey-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    clear: both;
}

.engagement-journey-step {
    position: relative;
    padding: clamp(0.75rem, 1.5vw, 1rem) 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: start;
}

.engagement-journey-step:last-child {
    border-bottom: none;
}

.engagement-step-number {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    color: rgba(0, 95, 216, 0.3);
    line-height: 1;
    letter-spacing: -0.02em;
}

.engagement-step-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.engagement-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.engagement-step-title {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0f172a;
    margin: 0;
    flex: 1;
}

.engagement-step-icon {
    width: 18px;
    height: 18px;
    color: #005FD8;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.engagement-step-header.is-expanded .engagement-step-icon {
    transform: rotate(45deg);
}

.engagement-step-focus {
    font-size: clamp(0.75rem, 0.85vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(15, 23, 42, 0.5);
    font-weight: 500;
    margin-top: 0.25rem;
}

.engagement-step-body {
    margin: 0;
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.75);
    max-width: 65ch;
}

.engagement-step-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.engagement-step-details.is-expanded {
    max-height: 800px;
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .engagement-journey-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .engagement-journey-header.section-stack.centered {
        position: static;
    }
}

@media (max-width: 768px) {
    .engagement-journey-step {
        grid-template-columns: 50px 1fr;
        gap: 1.25rem;
        padding: 0.75rem 0;
    }

    .engagement-step-number {
        font-size: 1.5rem;
    }
}

.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);
}

.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);
}

.explore-spotlight-card {
    background-size: cover;
    background-position: center;
}

.explore-spotlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 41, 59, 0.75) 35%,
        rgba(15, 23, 42, 0.88) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.explore-spotlight-card .next-label,
.explore-spotlight-card .spotlight-body,
.explore-spotlight-card .spotlight-cta {
    position: relative;
    z-index: 2;
}

.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;
    }
}

/* Logo Styles */
.cela-logo {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    width: 120px;
    height: auto;
    transition: opacity 0.3s ease;
}

.cela-logo:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cela-logo {
        width: 100px;
        top: 12px;
        left: 12px;
    }
}

.expertise-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 244, 246, 0.88) 100%), url('https://www.topsoe.com/hs-fs/hubfs/Hydrogen%201.png?width=1440&height=1248&name=Hydrogen%201.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-header.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 {
    text-align: left;
}

.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-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;
}

.insights-carousel-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    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.5rem;
}

.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: 12px;
    overflow: hidden;
    box-shadow: 0 34px 70px rgba(15, 23, 42, 0.32);
    isolation: isolate;
}

.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;
}

.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.5rem;
    padding: var(--badge-padding);
    background: rgba(15, 118, 110, 0.72);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    font-size: var(--badge-font-size);
    font-weight: var(--badge-font-weight);
    letter-spacing: var(--badge-letter-spacing);
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 16px 32px rgba(13, 80, 67, 0.35);
}

.insights-slide-card {
    position: absolute;
    inset: auto var(--insights-slide-offset) var(--insights-slide-offset) auto;
    max-width: min(420px, 48%);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: clamp(1.4rem, 3vw, 1.9rem);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    color: #0f172a;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.8vw, 1.1rem);
    backdrop-filter: blur(8px);
}

.insights-slide-result {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.82);
}

.insights-slide-result .label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.56);
}

.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;
}

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

.insights-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    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: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.4);
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.insights-carousel-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.1s linear;
}

.insights-carousel-dot.is-active {
    background: var(--accent-color);
    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);
}

.explore-more-section {
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.explore-more-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(15, 118, 110, 0.16), transparent 42%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.12), transparent 48%);
    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.25rem, 4vw, 3rem);
}

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

.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.12fr) minmax(0, 0.88fr);
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: stretch;
}

.explore-spotlight-card {
    position: relative;
    background: linear-gradient(135deg, #0f3d3a 0%, #11212f 52%, #0b1724 100%);
    color: var(--text-inverse);
    border-radius: 28px;
    padding: clamp(1.65rem, 3vw, 2.1rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.9rem, 1.8vw, 1.29rem);
    box-shadow: 0 28px 68px rgba(15, 23, 42, 0.32);
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.explore-spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 95, 216, 0.22), transparent 58%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.16), transparent 62%);
    mix-blend-mode: screen;
    opacity: 0.85;
    pointer-events: none;
}

.explore-spotlight-card .next-label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(209, 213, 219, 0.75);
    font-weight: 600;
}

.explore-spotlight-card .next-label::before {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(0, 95, 216, 0.6);
    display: inline-block;
}

.explore-spotlight-card .spotlight-body {
    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.01em;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.94);
}

.explore-spotlight-card p {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.7;
}

.explore-spotlight-card .spotlight-cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(0, 95, 216, 0.95);
    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(1.25rem, 2.5vw, 1.75rem);
}

.explore-tile {
    position: relative;
    min-height: clamp(132px, 16.8vw, 168px);
    border-radius: 24px;
    overflow: hidden;
    color: var(--text-inverse);
    display: flex;
    align-items: flex-end;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.28);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.explore-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 20, 33, 0.05) 0%, rgba(12, 20, 33, 0.78) 100%);
    mix-blend-mode: multiply;
}

.explore-tile:hover,
.explore-tile:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.38);
    border-color: rgba(0, 95, 216, 0.38);
}

.explore-tile .tile-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(1.05rem, 1.8vw, 1.35rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.explore-tile .tile-eyebrow {
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.75);
    font-weight: 600;
}

.explore-tile h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.94);
}

.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(226, 232, 240, 0.9);
    transition: color 0.3s ease;
}

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

.explore-tile .tile-link:hover,
.explore-tile .tile-link:focus-visible {
    color: rgba(0, 95, 216, 0.95);
}

.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-intro.section-stack.centered {
    text-align: left;
    align-items: flex-start;
}

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

.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: 6px;
    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: 2;
    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: 2;
    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: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .explore-more-grid {
        grid-template-columns: 1fr;
    }

    .explore-side-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@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: 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);
    }

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

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

    .expertise-card {
        padding: 1.75rem;
    }

    .playbook-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

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

    .explore-side-stack {
        grid-template-columns: 1fr;
    }

    .explore-spotlight-card,
    .explore-tile {
        border-radius: 20px;
    }

    .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-spotlight-card {
        padding: 1.35rem 1.05rem;
    }

    .explore-tile .tile-content {
        padding: 1.05rem 0.9rem;
    }
}

@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;
    }
}.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;
    }
}

/* Services-specific safety: keep spotlight card fully visible with longer copy */
.insights-slide-card {
    top: auto;
    bottom: var(--insights-slide-offset);
    transform: none;
}

.insights-carousel-slide:hover .insights-slide-card {
    transform: translateY(-8px) scale(1.01);
}
        
.services-inline-53c2c63bece8{--hero-background-image: url('/assets/images/services/banners/market-dynamics-observatory.png');}
.services-inline-126244f1351e{flex: 1;}
.services-inline-92d6e7440010{background-image: url('/assets/images/industries/banners/omnichannel-conversion-current.png');}
.services-inline-928bc68d1f3b{background-image: url('/assets/images/industries/banners/digital-backbone-signalwave.png');}
.services-inline-688be03ef1f1{background-image: url('/assets/images/industries/banners/fandom-spotlight-arcade.png');}
.services-inline-c8475d5e9f99{background-image: url('/assets/images/industries/banners/fintech-trust-grid-banner.png');}
.services-inline-9e25badcaf10{background-image: url('/assets/images/industries/banners/saas-trust-fabric-hero.png');}
.services-inline-11f70f51e5a4{background-image: url('/assets/images/industries/banners/care-compliance-continuum.png');}
.services-inline-cf70a237a75d{transform: translateX(0);}
.services-inline-9b42b9f69987{background-image: url('/assets/images/industries/banners/industrial-vanguard-forge.png');}
