/* MAXQlabs - Main Stylesheet */
/* Modern, innovative design for AI transformation company */

/* ==================== */
/* 1. CSS RESET & BASE */
/* ==================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ==================== */
/* 2. TYPOGRAPHY */
/* ==================== */

/* Import Epilogue font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,300;0,400;0,700;0,800;1,200;1,300&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #222222;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
}

h5, h6 {
    font-size: 1.125rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    font-weight: 300;
}

.subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 200;
    color: #666666;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.accent-text {
    font-style: italic;
    font-weight: 200;
}

strong {
    font-weight: 700;
}

/* ==================== */
/* 3. BRAND COLORS */
/* ==================== */

:root {
    /* Base Colors */
    --color-dark: #222222;
    --color-light: #ffffff;
    
    /* Pillar Colors */
    --color-build: #1bb394;
    --color-enable: #65d5ff;
    --color-transform: #ff6b7b;
    --color-empower: #9c6bff;
    
    /* Supporting Colors */
    --color-gray-dark: #333333;
    --color-gray-medium: #666666;
    --color-gray-light: #f5f5f5;
    --color-border: #e0e0e0;
    
    /* Blueprint Theme */
    --mq-teal: #19B394;
    --mq-aqua: #65D5FF;
    --mq-bg-light: #F9FAFB;
    --mq-text-dark: #0B0D10;
    --mq-muted: #556070;
    --mq-line: #E6EAEE;
    
    /* Status Colors */
    --color-success: #16a085;
    --color-warning: #f39c12;
    --color-error: #e74c3c;
    --color-info: #3498db;
    
    /* Gradients */
    --gradient-build: linear-gradient(135deg, #1bb394 0%, #16a085 100%);
    --gradient-enable: linear-gradient(135deg, #65d5ff 0%, #3498db 100%);
    --gradient-transform: linear-gradient(135deg, #ff6b7b 0%, #e74c3c 100%);
    --gradient-empower: linear-gradient(135deg, #9c6bff 0%, #8e44ad 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Layout */
    --max-width: 1400px;
    --header-height: 80px;
}

/* ==================== */
/* 4. LAYOUT & CONTAINERS */
/* ==================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.section-light {
    background-color: var(--color-gray-light);
}

.section-white {
    background-color: var(--color-light);
}

.section-gray {
    background-color: #F9FAFB;
}

/* ==================== */
/* 5. HEADER & NAVIGATION */
/* ==================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.logo-green {
    animation: logoFade1 20s ease-in-out infinite;
}

.logo-blue {
    animation: logoFade2 20s ease-in-out infinite;
}

.logo-red {
    animation: logoFade3 20s ease-in-out infinite;
}

.logo-purple {
    animation: logoFade4 20s ease-in-out infinite;
}

/* Reserve space for logo */
.logo::after {
    content: '';
    display: block;
    width: 178px;
    height: 50px;
}

/* Logo rotation animations (20s cycle, 5s per logo) - Seamless loop */
@keyframes logoFade1 {
    0%, 22% {
        opacity: 1;
    }
    25%, 97% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes logoFade2 {
    0%, 22% {
        opacity: 0;
    }
    25%, 47% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

@keyframes logoFade3 {
    0%, 47% {
        opacity: 0;
    }
    50%, 72% {
        opacity: 1;
    }
    75%, 100% {
        opacity: 0;
    }
}

@keyframes logoFade4 {
    0%, 72% {
        opacity: 0;
    }
    75%, 97% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.logo:hover .logo-img {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Static Logo (for pillar pages - no rotation) */
.logo-static {
    width: 178px;
    display: flex;
    align-items: center;
}

.logo-static img {
    position: static;
    height: auto;
    width: 178px;
    object-fit: contain;
    opacity: 1;
    animation: none;
}

.logo-static::after {
    display: none;
}

.logo-static:hover img {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Text-based logo fallback (if images don't load) */
.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: -0.02em;
}

.logo-text .q {
    color: var(--color-build);
    transition: var(--transition-base);
}

.logo-text .labs {
    font-weight: 200;
    font-style: italic;
    font-size: 1.5rem;
}

.logo-text:hover .q {
    transform: scale(1.1);
}

/* Main Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 400;
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
}

nav a:hover {
    color: var(--color-build);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-build);
    transition: var(--transition-base);
}

nav a:hover::after {
    width: 100%;
}

/* Remove underline effect for buttons in nav */
nav a.btn::after {
    display: none;
}

/* Button styles in navigation */
nav a.btn:hover {
    color: #ffffff;
}

/* Dropdown Menu - Compact & Refined */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle::before {
    content: '▾';
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle::before {
    transform: translateY(2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
    padding: 0;
}

.dropdown-menu li + li {
    margin-top: 0;
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.625rem 0.875rem;
    border-radius: 0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-item::after {
    display: none;
}

.dropdown-menu li:first-child .dropdown-item {
    border-radius: 6px 6px 0 0;
}

.dropdown-menu li:last-child .dropdown-item {
    border-radius: 0 0 6px 6px;
}

.pillar-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: currentColor;
    line-height: 1.2;
}

.pillar-desc {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-gray-medium);
    line-height: 1.3;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--color-gray-light);
    outline: none;
}

.dropdown-item:hover .pillar-desc,
.dropdown-item:focus .pillar-desc {
    color: var(--color-gray-dark);
}

/* Keep pillar-specific colors on hover */
.dropdown-item.color-build:hover,
.dropdown-item.color-build:focus {
    color: var(--color-build);
}

.dropdown-item.color-enable:hover,
.dropdown-item.color-enable:focus {
    color: var(--color-enable);
}

.dropdown-item.color-transform:hover,
.dropdown-item.color-transform:focus {
    color: var(--color-transform);
}

.dropdown-item.color-empower:hover,
.dropdown-item.color-empower:focus {
    color: var(--color-empower);
}

.dropdown-item:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -2px;
}

/* Pillar Page Navigation - Ensure proper sizing */
nav ul li a.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    nav ul {
        gap: 1rem;
    }
    
    nav ul li a {
        font-size: 0.9375rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
    padding: 0.5rem;
}

/* ==================== */
/* 6. BUTTONS & CTAs */
/* ==================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-family: 'Epilogue', sans-serif;
}

.btn-primary {
    background-color: var(--color-build);
    color: var(--color-light);
    border-color: var(--color-build);
}

.btn-primary:hover {
    background-color: var(--color-success);
    border-color: var(--color-success);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-build);
    border-color: var(--color-build);
}

.btn-outline:hover {
    background-color: var(--color-build);
    color: var(--color-light);
}

/* Pillar-specific buttons */
.btn-build {
    background-color: var(--color-build);
    color: var(--color-light);
    border-color: var(--color-build);
}

.btn-build:hover {
    background-color: var(--color-success);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 179, 148, 0.3);
}

.btn-enable {
    background-color: var(--color-enable);
    color: var(--color-dark);
    border-color: var(--color-enable);
}

.btn-enable:hover {
    background-color: var(--color-info);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 213, 255, 0.3);
}

.btn-transform {
    background-color: var(--color-transform);
    color: var(--color-light);
    border-color: var(--color-transform);
}

.btn-transform:hover {
    background-color: var(--color-error);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 123, 0.3);
}

.btn-empower {
    background-color: var(--color-empower);
    color: var(--color-light);
    border-color: var(--color-empower);
}

.btn-empower:hover {
    background-color: #8e44ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.3);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
}

/* ==================== */
/* 7. HERO SECTIONS */
/* ==================== */

:root {
    --mq-teal: #19B394;
    --mq-aqua: #65D5FF;
    --mq-bg: #0B0D10;
    --mq-text: #E8EEF7;
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(25,179,148,0.08), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
    color: var(--mq-text);
}

/* Background Depth Overlay */
.hero-depth {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(101,213,255,0.06), transparent 70%),
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Grid - 60/40 Split */
.hero-grid {
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
}

/* Hero Text (Left - 60%) */
.hero-text {
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(25,179,148,0.3);
}

.hero-text .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(232,238,247,0.9);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-text .hero-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.7;
    color: rgba(232,238,247,0.7);
    margin-bottom: 2.5rem;
}

.hero-text .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-text .btn {
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    transition: all var(--transition-base);
}

.hero-text .btn-primary {
    background: linear-gradient(135deg, var(--mq-teal), var(--mq-aqua));
    color: #ffffff;
    border-color: var(--mq-teal);
    box-shadow: 0 0 20px rgba(25,179,148,0.4), 0 4px 16px rgba(0,0,0,0.3);
}

.hero-text .btn-primary:hover {
    box-shadow: 0 0 30px rgba(25,179,148,0.6), 0 6px 24px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.hero-text .btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--mq-text);
    border: 2px solid rgba(232,238,247,0.3);
    backdrop-filter: blur(10px);
}

.hero-text .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(232,238,247,0.5);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-text {
        text-align: center;
    }
    
    .hero-text .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem var(--spacing-md);
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text .subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-text .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .hero-text .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-text .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Orbit Stage (Right - 40%) */
.hero-orbit-stage {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 550px;
    margin: 0 auto;
}

/* Central Glowing Halo */
.orbit-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

.halo-glow-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
        rgba(25,179,148,0.3) 0%,
        rgba(52,195,180,0.2) 25%,
        rgba(65,213,255,0.15) 50%,
        rgba(101,213,255,0.08) 70%,
        transparent 85%
    );
    filter: blur(50px);
    animation: haloBreath 6s ease-in-out infinite;
}

.halo-ring-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(25,179,148,0.25);
    box-shadow: 
        0 0 15px rgba(25,179,148,0.2),
        inset 0 0 15px rgba(65,213,255,0.1);
}

@keyframes haloBreath {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* Orbiting Service Globes (220px radius, 35s rotation) */
.orbit-globes {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: auto;
}

/* Globe Orbit Container */
.globe-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: orbitGlobe 35s linear infinite;
    text-decoration: none;
    cursor: pointer;
}

/* Remove hover effects for hero orbs */
.hero-orbit-stage .globe-orbit:hover,
.hero-orbit-stage .globe-orbit:focus {
    transform: none;
    outline: none;
}

.hero-orbit-stage .globe-orbit:hover .globe-sphere,
.hero-orbit-stage .globe-orbit:focus .globe-sphere {
    transform: none;
    box-shadow: none;
}

.hero-orbit-stage .globe-orbit:hover .globe-glow,
.hero-orbit-stage .globe-orbit:focus .globe-glow {
    transform: none;
    opacity: 1;
}

.hero-orbit-stage .globe-orbit:hover .globe-label,
.hero-orbit-stage .globe-orbit:focus .globe-label {
    transform: translate(-50%, 48px);
    font-weight: inherit;
}

/* Accessibility: Focus visible for keyboard navigation */
.hero-orbit-stage .globe-orbit:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
    border-radius: 50%;
}

/* Individual globe positions (start at different points on orbit) */
.globe-build {
    animation-delay: 0s;
}

.globe-enable {
    animation-delay: -8.75s;
}

.globe-transform {
    animation-delay: -17.5s;
}

.globe-empower {
    animation-delay: -26.25s;
}

@keyframes orbitGlobe {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(220px);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(220px);
    }
}

/* Globe Sphere */
.globe-sphere {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), currentColor);
    border: 2px solid currentColor;
    box-shadow: 
        0 0 25px currentColor,
        0 4px 15px rgba(0,0,0,0.4),
        inset 0 0 15px rgba(255,255,255,0.3);
    position: relative;
    animation: globePulseGrow 3.5s ease-in-out infinite;
}

.globe-build {
    color: var(--color-build);
}

.globe-build .globe-sphere {
    animation-delay: 0s;
}

.globe-enable {
    color: var(--color-enable);
}

.globe-enable .globe-sphere {
    animation-delay: 0.75s;
}

.globe-transform {
    color: var(--color-transform);
}

.globe-transform .globe-sphere {
    animation-delay: 1.5s;
}

.globe-empower {
    color: var(--color-empower);
}

.globe-empower .globe-sphere {
    animation-delay: 2.25s;
}

/* Globe Glow Effect */
.globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(15px);
    animation: glowPulse 3.5s ease-in-out infinite;
    z-index: -1;
}

.globe-build .globe-glow {
    animation-delay: 0s;
}

.globe-enable .globe-glow {
    animation-delay: 0.875s;
}

.globe-transform .globe-glow {
    animation-delay: 1.75s;
}

.globe-empower .globe-glow {
    animation-delay: 2.625s;
}

@keyframes globePulseGrow {
    0% {
        transform: scale(0.9);
        box-shadow: 
            0 0 20px currentColor,
            0 3px 12px rgba(0,0,0,0.3),
            inset 0 0 12px rgba(255,255,255,0.2);
    }
    25% {
        transform: scale(1.1);
        box-shadow: 
            0 0 35px currentColor,
            0 5px 18px rgba(0,0,0,0.4),
            inset 0 0 18px rgba(255,255,255,0.35);
    }
    50% {
        transform: scale(0.95);
        box-shadow: 
            0 0 22px currentColor,
            0 4px 14px rgba(0,0,0,0.35),
            inset 0 0 14px rgba(255,255,255,0.25);
    }
    75% {
        transform: scale(1.15);
        box-shadow: 
            0 0 45px currentColor,
            0 6px 22px rgba(0,0,0,0.5),
            inset 0 0 22px rgba(255,255,255,0.4);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 
            0 0 20px currentColor,
            0 3px 12px rgba(0,0,0,0.3),
            inset 0 0 12px rgba(255,255,255,0.2);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(0.9);
    }
    25% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(1.4);
    }
    50% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(1.1);
    }
    75% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

/* Globe Label - Stays Horizontal */
.globe-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 48px);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: currentColor;
    white-space: nowrap;
    opacity: 0.9;
    text-shadow: 0 0 8px currentColor;
    animation: keepHorizontal 35s linear infinite;
}

.globe-build .globe-label {
    animation-delay: 0s;
}

.globe-enable .globe-label {
    animation-delay: -8.75s;
}

.globe-transform .globe-label {
    animation-delay: -17.5s;
}

.globe-empower .globe-label {
    animation-delay: -26.25s;
}

@keyframes keepHorizontal {
    from {
        transform: translate(-50%, 48px) rotate(0deg);
    }
    to {
        transform: translate(-50%, 48px) rotate(-360deg);
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 
        0 0 40px rgba(27,179,148,0.4),
        0 2px 20px rgba(0,0,0,0.5);
    position: relative;
    z-index: 3;
}

.hero-content .subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 1.125rem 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--color-build) 0%, #16a085 100%);
    color: #ffffff;
    border-color: var(--color-build);
    box-shadow: 
        0 0 20px rgba(27,179,148,0.4),
        0 4px 16px rgba(0,0,0,0.3);
}

.hero-cta .btn-primary:hover {
    box-shadow: 
        0 0 30px rgba(27,179,148,0.6),
        0 6px 24px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.hero-cta .btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
    box-shadow: 
        0 0 10px rgba(65,213,255,0.2),
        0 4px 12px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 
        0 0 20px rgba(65,213,255,0.3),
        0 6px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* Responsive Hero */
@media (max-width: 768px) {
    /* Hide hero section animation on mobile */
    .hero-orbit-stage {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .orbit-globes,
    .halo-glow-inner {
        animation: none;
    }
    
    .globe-sphere,
    .globe-glow {
        animation: none;
    }
    
    .hero-text {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* AI Waves Container */
.hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Wave 1 - Build Green (flowing wave - smooth top & bottom) */
.wave-1 {
    top: 28%;
    left: -5%;
    width: 110%;
    height: 200px;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(27,179,148,0.4) 0%, rgba(22,160,133,0.25) 40%, transparent 70%),
        linear-gradient(90deg, transparent 0%, rgba(30,195,165,0.15) 20%, rgba(27,179,148,0.3) 50%, rgba(16,140,120,0.15) 80%, transparent 100%);
    clip-path: polygon(
        0% 40%,
        2% 36%, 4% 33%, 6% 31%, 8% 30%, 10% 31%, 12% 33%, 14% 36%, 16% 40%, 18% 44%,
        20% 47%, 22% 50%, 24% 52%, 26% 53%, 28% 54%, 30% 54%, 32% 53%, 34% 52%, 36% 50%, 38% 47%,
        40% 44%, 42% 40%, 44% 36%, 46% 33%, 48% 31%, 50% 30%, 52% 31%, 54% 33%, 56% 36%, 58% 40%,
        60% 44%, 62% 47%, 64% 50%, 66% 52%, 68% 53%, 70% 54%, 72% 54%, 74% 53%, 76% 52%, 78% 50%,
        80% 47%, 82% 44%, 84% 40%, 86% 36%, 88% 33%, 90% 31%, 92% 30%, 94% 31%, 96% 33%, 98% 36%, 100% 40%,
        100% 60%,
        98% 64%, 96% 67%, 94% 69%, 92% 70%, 90% 69%, 88% 67%, 86% 64%, 84% 60%, 82% 56%,
        80% 53%, 78% 50%, 76% 48%, 74% 47%, 72% 46%, 70% 46%, 68% 47%, 66% 48%, 64% 50%, 62% 53%,
        60% 56%, 58% 60%, 56% 64%, 54% 67%, 52% 69%, 50% 70%, 48% 69%, 46% 67%, 44% 64%, 42% 60%,
        40% 56%, 38% 53%, 36% 50%, 34% 48%, 32% 47%, 30% 46%, 28% 46%, 26% 47%, 24% 48%, 22% 50%,
        20% 53%, 18% 56%, 16% 60%, 14% 64%, 12% 67%, 10% 69%, 8% 70%, 6% 69%, 4% 67%, 2% 64%, 0% 60%
    );
    animation: flowWave1 12s ease-in-out infinite;
    filter: blur(4px);
}

/* Wave 2 - Enable Blue (flowing wave - smooth top & bottom) */
.wave-2 {
    top: 28%;
    left: -5%;
    width: 110%;
    height: 200px;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(65,213,255,0.38) 0%, rgba(52,152,219,0.23) 40%, transparent 70%),
        linear-gradient(90deg, transparent 0%, rgba(90,220,255,0.14) 20%, rgba(65,213,255,0.28) 50%, rgba(52,152,219,0.14) 80%, transparent 100%);
    clip-path: polygon(
        0% 52%,
        2% 58%, 4% 63%, 6% 66%, 8% 68%, 10% 69%, 12% 68%, 14% 66%, 16% 63%, 18% 58%,
        20% 53%, 22% 48%, 24% 44%, 26% 41%, 28% 39%, 30% 38%, 32% 39%, 34% 41%, 36% 44%, 38% 48%,
        40% 53%, 42% 58%, 44% 63%, 46% 66%, 48% 68%, 50% 69%, 52% 68%, 54% 66%, 56% 63%, 58% 58%,
        60% 53%, 62% 48%, 64% 44%, 66% 41%, 68% 39%, 70% 38%, 72% 39%, 74% 41%, 76% 44%, 78% 48%,
        80% 53%, 82% 58%, 84% 63%, 86% 66%, 88% 68%, 90% 69%, 92% 68%, 94% 66%, 96% 63%, 98% 58%, 100% 52%,
        100% 48%,
        98% 42%, 96% 37%, 94% 34%, 92% 32%, 90% 31%, 88% 32%, 86% 34%, 84% 37%, 82% 42%,
        80% 47%, 78% 52%, 76% 56%, 74% 59%, 72% 61%, 70% 62%, 68% 61%, 66% 59%, 64% 56%, 62% 52%,
        60% 47%, 58% 42%, 56% 37%, 54% 34%, 52% 32%, 50% 31%, 48% 32%, 46% 34%, 44% 37%, 42% 42%,
        40% 47%, 38% 52%, 36% 56%, 34% 59%, 32% 61%, 30% 62%, 28% 61%, 26% 59%, 24% 56%, 22% 52%,
        20% 47%, 18% 42%, 16% 37%, 14% 34%, 12% 32%, 10% 31%, 8% 32%, 6% 34%, 4% 37%, 2% 42%, 0% 48%
    );
    animation: flowWave2 14s ease-in-out infinite;
    filter: blur(4px);
}

/* Wave 3 - Transform Red (flowing wave - smooth top & bottom) */
.wave-3 {
    top: 28%;
    left: -5%;
    width: 110%;
    height: 200px;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255,107,123,0.42) 0%, rgba(231,76,60,0.26) 40%, transparent 70%),
        linear-gradient(90deg, transparent 0%, rgba(255,100,115,0.16) 20%, rgba(255,107,123,0.32) 50%, rgba(231,76,60,0.16) 80%, transparent 100%);
    clip-path: polygon(
        0% 46%,
        2% 40%, 4% 35%, 6% 32%, 8% 30%, 10% 29%, 12% 30%, 14% 32%, 16% 35%, 18% 40%,
        20% 45%, 22% 50%, 24% 54%, 26% 57%, 28% 59%, 30% 60%, 32% 60%, 34% 59%, 36% 57%, 38% 54%,
        40% 50%, 42% 46%, 44% 41%, 46% 37%, 48% 34%, 50% 32%, 52% 31%, 54% 32%, 56% 34%, 58% 37%,
        60% 41%, 62% 46%, 64% 50%, 66% 54%, 68% 57%, 70% 59%, 72% 60%, 74% 60%, 76% 59%, 78% 57%,
        80% 54%, 82% 50%, 84% 46%, 86% 41%, 88% 37%, 90% 34%, 92% 32%, 94% 31%, 96% 32%, 98% 35%, 100% 39%,
        100% 61%,
        98% 65%, 96% 68%, 94% 70%, 92% 71%, 90% 70%, 88% 68%, 86% 65%, 84% 61%,
        82% 57%, 80% 53%, 78% 50%, 76% 47%, 74% 45%, 72% 44%, 70% 43%, 68% 44%, 66% 45%, 64% 47%,
        62% 50%, 60% 53%, 58% 57%, 56% 61%, 54% 64%, 52% 66%, 50% 68%, 48% 69%, 46% 68%, 44% 66%,
        42% 64%, 40% 61%, 38% 57%, 36% 53%, 34% 50%, 32% 47%, 30% 45%, 28% 44%, 26% 43%, 24% 44%,
        22% 45%, 20% 47%, 18% 50%, 16% 53%, 14% 57%, 12% 61%, 10% 64%, 8% 66%, 6% 68%, 4% 69%, 2% 68%, 0% 66%
    );
    animation: flowWave3 16s ease-in-out infinite;
    filter: blur(4px);
}

/* Wave 4 - Empower Purple (flowing wave - smooth top & bottom) */
.wave-4 {
    top: 28%;
    left: -5%;
    width: 110%;
    height: 200px;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(156,107,255,0.4) 0%, rgba(142,68,173,0.24) 40%, transparent 70%),
        linear-gradient(90deg, transparent 0%, rgba(160,115,255,0.15) 20%, rgba(156,107,255,0.3) 50%, rgba(142,68,173,0.15) 80%, transparent 100%);
    clip-path: polygon(
        0% 50%,
        2% 56%, 4% 61%, 6% 64%, 8% 66%, 10% 67%, 12% 67%, 14% 66%, 16% 64%, 18% 61%,
        20% 57%, 22% 52%, 24% 48%, 26% 44%, 28% 41%, 30% 39%, 32% 38%, 34% 38%, 36% 39%, 38% 41%,
        40% 44%, 42% 48%, 44% 52%, 46% 56%, 48% 60%, 50% 63%, 52% 65%, 54% 66%, 56% 66%, 58% 65%,
        60% 63%, 62% 60%, 64% 56%, 66% 52%, 68% 48%, 70% 44%, 72% 41%, 74% 39%, 76% 38%, 78% 38%,
        80% 39%, 82% 41%, 84% 44%, 86% 48%, 88% 52%, 90% 57%, 92% 61%, 94% 64%, 96% 66%, 98% 67%, 100% 67%,
        100% 50%,
        98% 44%, 96% 39%, 94% 36%, 92% 34%, 90% 33%, 88% 33%, 86% 34%, 84% 36%, 82% 39%,
        80% 43%, 78% 48%, 76% 52%, 74% 56%, 72% 59%, 70% 61%, 68% 62%, 66% 62%, 64% 61%, 62% 59%,
        60% 56%, 58% 52%, 56% 48%, 54% 44%, 52% 40%, 50% 37%, 48% 35%, 46% 34%, 44% 34%, 42% 35%,
        40% 37%, 38% 40%, 36% 44%, 34% 48%, 32% 52%, 30% 56%, 28% 59%, 26% 61%, 24% 62%, 22% 62%,
        20% 61%, 18% 59%, 16% 56%, 14% 52%, 12% 48%, 10% 43%, 8% 39%, 6% 36%, 4% 34%, 2% 33%, 0% 33%
    );
    animation: flowWave4 18s ease-in-out infinite;
    filter: blur(4px);
}

/* Flowing wave animations - like audio waveforms */
@keyframes flowWave1 {
    0% { 
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(-30px) scaleX(1.05) scaleY(1.4);
        opacity: 1;
    }
    50% { 
        transform: translateX(0) scaleX(0.98) scaleY(0.7);
        opacity: 0.6;
    }
    75% {
        transform: translateX(30px) scaleX(1.03) scaleY(1.3);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.8;
    }
}

@keyframes flowWave2 {
    0% { 
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.75;
    }
    25% {
        transform: translateX(40px) scaleX(1.04) scaleY(0.8);
        opacity: 0.65;
    }
    50% { 
        transform: translateX(0) scaleX(0.97) scaleY(1.5);
        opacity: 0.95;
    }
    75% {
        transform: translateX(-40px) scaleX(1.02) scaleY(1.15);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.75;
    }
}

@keyframes flowWave3 {
    0% { 
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.7;
    }
    25% {
        transform: translateX(-25px) scaleX(1.03) scaleY(1.35);
        opacity: 0.9;
    }
    50% { 
        transform: translateX(20px) scaleX(0.99) scaleY(0.75);
        opacity: 0.6;
    }
    75% {
        transform: translateX(0) scaleX(1.01) scaleY(1.45);
        opacity: 0.85;
    }
    100% {
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.7;
    }
}

@keyframes flowWave4 {
    0% { 
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(35px) scaleX(1.02) scaleY(1.25);
        opacity: 0.7;
    }
    50% { 
        transform: translateX(-20px) scaleX(0.98) scaleY(0.85);
        opacity: 1;
    }
    75% {
        transform: translateX(25px) scaleX(1.04) scaleY(1.4);
        opacity: 0.75;
    }
    100% {
        transform: translateX(0) scaleX(1) scaleY(1);
        opacity: 0.8;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    background: rgba(27,179,148,0.4);
    top: 20%;
    left: 15%;
    animation: float-particle 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    background: rgba(65,213,255,0.4);
    top: 35%;
    right: 20%;
    animation: float-particle 25s ease-in-out infinite reverse;
}

.particle-3 {
    width: 10px;
    height: 10px;
    background: rgba(255,107,123,0.35);
    bottom: 25%;
    left: 25%;
    animation: float-particle 22s ease-in-out infinite;
}

.particle-4 {
    width: 7px;
    height: 7px;
    background: rgba(156,107,255,0.4);
    bottom: 35%;
    right: 18%;
    animation: float-particle 28s ease-in-out infinite reverse;
}

.particle-5 {
    width: 5px;
    height: 5px;
    background: rgba(27,179,148,0.5);
    top: 60%;
    left: 10%;
    animation: float-particle 18s ease-in-out infinite;
}

.particle-6 {
    width: 9px;
    height: 9px;
    background: rgba(65,213,255,0.35);
    top: 45%;
    right: 12%;
    animation: float-particle 24s ease-in-out infinite reverse;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.9;
    }
    75% {
        transform: translate(40px, -50px) scale(1.1);
        opacity: 0.5;
    }
}

/* AI Lab Elements */
.ai-lab-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* AI Nodes - Neural network style */
.ai-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor inset;
    animation: pulseNode 4s ease-in-out infinite;
}

.node-1 {
    top: 15%;
    left: 12%;
    border-color: var(--color-build);
    color: var(--color-build);
    animation-delay: 0s;
}

.node-2 {
    top: 25%;
    right: 15%;
    border-color: var(--color-enable);
    color: var(--color-enable);
    animation-delay: 0.8s;
}

.node-3 {
    bottom: 20%;
    left: 18%;
    border-color: var(--color-transform);
    color: var(--color-transform);
    animation-delay: 1.6s;
}

.node-4 {
    bottom: 30%;
    right: 12%;
    border-color: var(--color-empower);
    color: var(--color-empower);
    animation-delay: 2.4s;
}

.node-5 {
    top: 50%;
    left: 8%;
    border-color: var(--color-enable);
    color: var(--color-enable);
    animation-delay: 3.2s;
}

.node-6 {
    top: 45%;
    right: 10%;
    border-color: var(--color-transform);
    color: var(--color-transform);
    animation-delay: 1.2s;
}

@keyframes pulseNode {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
        box-shadow: 0 0 10px currentColor, 0 0 20px currentColor inset;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
        box-shadow: 0 0 20px currentColor, 0 0 30px currentColor inset;
    }
}

/* AI Connections - Lines between nodes */
.ai-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor 20%, currentColor 80%, transparent);
    transform-origin: left center;
    opacity: 0.15;
    animation: connectionPulse 6s ease-in-out infinite;
}

.connection-1 {
    top: 18%;
    left: 13%;
    width: 70%;
    color: var(--color-build);
    transform: rotate(-3deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 48%;
    left: 10%;
    width: 78%;
    color: var(--color-enable);
    transform: rotate(2deg);
    animation-delay: 2s;
}

.connection-3 {
    bottom: 24%;
    left: 20%;
    width: 65%;
    color: var(--color-empower);
    transform: rotate(-1deg);
    animation-delay: 4s;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.1;
        filter: blur(0px);
    }
    50% {
        opacity: 0.3;
        filter: blur(0.5px);
    }
}

/* Code Fragments - Floating text */
.code-fragment {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    border: 1px solid currentColor;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    animation: floatFragment 15s ease-in-out infinite;
    opacity: 0.25;
}

.fragment-1 {
    top: 12%;
    left: 5%;
    color: var(--color-build);
    animation-delay: 0s;
}

.fragment-2 {
    top: 20%;
    right: 8%;
    color: var(--color-enable);
    animation-delay: 3.75s;
}

.fragment-3 {
    bottom: 18%;
    left: 7%;
    color: var(--color-transform);
    animation-delay: 7.5s;
}

.fragment-4 {
    bottom: 25%;
    right: 6%;
    color: var(--color-empower);
    animation-delay: 11.25s;
}

@keyframes floatFragment {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
        opacity: 0.25;
    }
    75% {
        transform: translateY(-25px) rotate(1deg);
        opacity: 0.3;
    }
}

.hero-content h1 {
    font-size: clamp(2.75rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.9),
        rgba(65,213,255,0.6),
        transparent
    );
    border-radius: 2px;
    animation: fadeInLine 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInLine {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 120px;
    }
}

.hero-content .subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-cta .btn {
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 1.125rem 2.5rem;
    transition: all var(--transition-base);
}

.hero-cta .btn-primary {
    background: rgba(255,255,255,0.95);
    color: var(--color-dark);
    border-color: rgba(255,255,255,0.95);
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.2),
        0 0 30px rgba(65,213,255,0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(27,179,148,0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta .btn-primary:hover {
    background: #ffffff;
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.3),
        0 0 40px rgba(65,213,255,0.5);
    transform: translateY(-2px);
}

.hero-cta .btn-primary:hover::before {
    left: 100%;
}

.hero-cta .btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-cta .btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-data-streams {
        width: 100%;
        opacity: 0.3;
    }
}

/* Hero Orbit - Right Side */
.hero-orbit {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.4s backwards;
    transition: transform 0.3s ease-out;
}

@media (max-width: 1024px) {
    .hero-orbit {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-orbit {
        width: 320px;
        height: 320px;
    }
}

/* Hero Orbit Core */
.hero-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid rgba(0,0,0,0.08);
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.5) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-base);
}

.hero-core-logo {
    width: 100%;
    height: auto;
    max-width: 70px;
    transition: all var(--transition-base);
}

.hero-orbit-core:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 0 0 1px rgba(255,255,255,0.8) inset;
}

.hero-orbit-core:hover .hero-core-logo {
    transform: scale(1.05);
}

/* Hero Orbit Rings */
.hero-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid;
    pointer-events: none;
}

.hero-orbit-ring:nth-child(2) {
    width: 120px;
    height: 120px;
    border-color: rgba(27,179,148,0.15);
    animation: rotateRing 25s linear infinite;
}

.hero-orbit-ring.ring-2 {
    width: 140px;
    height: 140px;
    border-color: rgba(101,213,255,0.12);
    animation: rotateRing 30s linear infinite reverse;
}

.hero-orbit-ring.ring-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(156,107,255,0.1);
    animation: rotateRing 35s linear infinite;
}

/* Hero Orbit Path (SVG) */
.hero-orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    animation: rotateOrbit 60s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hero Orbit Nodes */
.hero-orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    animation: orbitRotate 40s linear infinite;
}

.node-build {
    animation-delay: 0s;
}

.node-enable {
    animation-delay: -10s;
}

.node-transform {
    animation-delay: -20s;
}

.node-empower {
    animation-delay: -30s;
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Hero Node Dot */
.hero-node-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid;
    background: #ffffff;
    box-shadow: 0 0 15px currentColor, 0 2px 8px rgba(0,0,0,0.15);
    animation: pulseDot 3s ease-in-out infinite;
    position: relative;
}

.node-build .hero-node-dot {
    border-color: var(--color-build);
    color: var(--color-build);
    animation-delay: 0s;
}

.node-enable .hero-node-dot {
    border-color: var(--color-enable);
    color: var(--color-enable);
    animation-delay: 0.75s;
}

.node-transform .hero-node-dot {
    border-color: var(--color-transform);
    color: var(--color-transform);
    animation-delay: 1.5s;
}

.node-empower .hero-node-dot {
    border-color: var(--color-empower);
    color: var(--color-empower);
    animation-delay: 2.25s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px currentColor, 0 2px 8px rgba(0,0,0,0.15);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 25px currentColor, 0 4px 12px rgba(0,0,0,0.2);
    }
}

/* Hero Node Trail */
.hero-node-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    opacity: 0.15;
    animation: pulseTrail 3s ease-in-out infinite;
    pointer-events: none;
}

.node-build .hero-node-trail {
    color: var(--color-build);
    animation-delay: 0s;
}

.node-enable .hero-node-trail {
    color: var(--color-enable);
    animation-delay: 0.75s;
}

.node-transform .hero-node-trail {
    color: var(--color-transform);
    animation-delay: 1.5s;
}

.node-empower .hero-node-trail {
    color: var(--color-empower);
    animation-delay: 2.25s;
}

@keyframes pulseTrail {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.05;
    }
}

@media (max-width: 768px) {
    .hero-orbit-core {
        width: 80px;
        height: 80px;
    }
    
    .hero-core-logo {
        max-width: 55px;
    }
    
    @keyframes orbitRotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }
}

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

/* Pillar-specific dark hero backgrounds */
.hero-build,
.hero-enable,
.hero-transform,
.hero-empower {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
    overflow: hidden;
    color: var(--mq-text);
}

.hero-build {
    background:
        radial-gradient(circle at 50% 30%, rgba(27,179,148,0.20), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
}

.hero-enable {
    background:
        radial-gradient(circle at 50% 30%, rgba(101,213,255,0.20), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
}

.hero-transform {
    background:
        radial-gradient(circle at 50% 30%, rgba(255,107,123,0.20), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
}

.hero-empower {
    background:
        radial-gradient(circle at 50% 30%, rgba(156,107,255,0.20), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
}

/* Pillar hero content styling for dark backgrounds */
.hero-build .hero-content h1,
.hero-enable .hero-content h1,
.hero-transform .hero-content h1,
.hero-empower .hero-content h1 {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.hero-build .hero-content .subtitle,
.hero-enable .hero-content .subtitle,
.hero-transform .hero-content .subtitle,
.hero-empower .hero-content .subtitle {
    color: rgba(232,238,247,0.9);
}

.hero-build .hero-content p,
.hero-enable .hero-content p,
.hero-transform .hero-content p,
.hero-empower .hero-content p {
    color: rgba(232,238,247,0.75);
}

/* Pillar hero buttons on dark backgrounds */
.hero-build .btn-build,
.hero-enable .btn-enable,
.hero-transform .btn-transform,
.hero-empower .btn-empower {
    box-shadow: 0 0 20px currentColor, 0 4px 16px rgba(0,0,0,0.3);
}

.hero-build .btn-outline,
.hero-enable .btn-outline,
.hero-transform .btn-outline,
.hero-empower .btn-outline {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.hero-build .btn-outline:hover,
.hero-enable .btn-outline:hover,
.hero-transform .btn-outline:hover,
.hero-empower .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Pillar hero h3 headings for dark background */
.hero-build h3,
.hero-enable h3,
.hero-transform h3,
.hero-empower h3 {
    color: #ffffff;
}

/* ==================== */
/* BLUEPRINT HERO (Build Page) */
/* ==================== */

.hero--blueprint {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(25,179,148,0.12), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
    color: var(--mq-text);
}

/* Subtle top glow */
.hero--blueprint::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 400px;
    background: radial-gradient(ellipse at top, 
        rgba(25, 179, 148, 0.08) 0%, 
        rgba(101, 213, 255, 0.06) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Grid layout */
.blueprint-grid {
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column: Content */
.blueprint-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.blueprint-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.blueprint-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(232,238,247,0.9);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 0;
}

/* Process highlight with gradient underline */
.process-highlight {
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--mq-teal), var(--mq-aqua)) 1;
    background: linear-gradient(135deg, 
        rgba(25, 179, 148, 0.08) 0%, 
        rgba(101, 213, 255, 0.05) 100%
    );
    padding: 1.25rem;
    border-radius: 4px;
}

.process-highlight p {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.7;
    color: rgba(232,238,247,0.85);
    font-weight: 300;
    margin-bottom: 0;
}

/* CTAs */
.blueprint-content .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.blueprint-content .hero-cta .btn {
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    transition: all var(--transition-base);
    position: relative;
}

.blueprint-content .btn-build {
    background: linear-gradient(135deg, var(--mq-teal), var(--mq-aqua));
    color: #ffffff;
    border-color: var(--mq-teal);
    box-shadow: 0 4px 12px rgba(25, 179, 148, 0.2);
}

.blueprint-content .btn-build:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 179, 148, 0.3);
}

.blueprint-content .btn-outline {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.blueprint-content .btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 12px rgba(25, 179, 148, 0.2);
}

/* Feature Chips */
.feature-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-chip {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(232,238,247,0.1);
    border-radius: 12px;
    transition: all var(--transition-base);
    cursor: default;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, var(--mq-teal), var(--mq-aqua));
    transition: height var(--transition-base);
}

.feature-chip:hover,
.feature-chip:focus-within {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(25, 179, 148, 0.2);
    border-color: rgba(25, 179, 148, 0.3);
}

.feature-chip:hover::before,
.feature-chip:focus-within::before {
    height: 3px;
}

.chip-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.chip-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.chip-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.chip-desc {
    font-size: 0.8125rem;
    color: rgba(232,238,247,0.7);
    line-height: 1.4;
    font-weight: 300;
}

/* Right Column: Blueprint Canvas */
.blueprint-canvas {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.blueprint-visual {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
}

/* Circuit line animations - slow pan */
.circuit-line {
    animation: linePan 20s ease-in-out infinite;
}

.circuit-h1 { animation-delay: 0s; }
.circuit-h2 { animation-delay: 0.5s; }
.circuit-h3 { animation-delay: 1s; }
.circuit-v1 { animation-delay: 1.5s; }
.circuit-v2 { animation-delay: 2s; }
.circuit-v3 { animation-delay: 2.5s; }

@keyframes linePan {
    0%, 100% { 
        stroke-dasharray: 5 10;
        stroke-dashoffset: 0;
    }
    50% { 
        stroke-dashoffset: 15;
    }
}

/* Node pulse animations */
.node-pulse {
    animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.node-main {
    animation: nodeMainPulse 2s ease-in-out infinite;
}

@keyframes nodeMainPulse {
    0%, 100% { 
        opacity: 1;
        filter: drop-shadow(0 0 0px rgba(25, 179, 148, 0.8));
    }
    50% { 
        opacity: 0.9;
        filter: drop-shadow(0 0 8px rgba(25, 179, 148, 0.6));
    }
}

/* Ring animations */
.node-ring {
    animation: ringExpand 4s ease-in-out infinite;
}

@keyframes ringExpand {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.1;
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .blueprint-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blueprint-canvas {
        order: -1;
        max-width: 450px;
    }
    
    .blueprint-content {
        text-align: center;
    }
    
    .blueprint-content .hero-cta {
        justify-content: center;
    }
    
    .process-highlight {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .blueprint-content h1 {
        font-size: 2.25rem;
    }
    
    .feature-chips {
        grid-template-columns: 1fr;
    }
    
    /* Hide the blueprint animation on mobile */
    .blueprint-canvas {
        display: none !important;
    }
    
    .blueprint-content .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .blueprint-content .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .blueprint-content,
    .blueprint-canvas {
        animation: none;
    }
    
    .circuit-line,
    .node-pulse,
    .node-main,
    .node-ring {
        animation: none !important;
    }
    
    .feature-chip:hover,
    .feature-chip:focus-within {
        transform: none;
    }
    
    .blueprint-content .btn-build:hover,
    .blueprint-content .btn-outline:hover {
        transform: none;
    }
}

/* ==================== */
/* BLUEPRINT HERO VARIANTS (Enable, Transform, Empower) */
/* ==================== */

/* Enable (Blue) variant */
.hero--blueprint-enable {
    background:
        radial-gradient(circle at 50% 30%, rgba(101,213,255,0.12), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
}

.hero--blueprint-enable::before {
    background: radial-gradient(ellipse at top, 
        rgba(101, 213, 255, 0.08) 0%, 
        rgba(52, 152, 219, 0.06) 40%,
        transparent 70%
    );
}

.hero--blueprint-enable .process-highlight {
    border-image: linear-gradient(180deg, #65D5FF, #3498db) 1;
    background: linear-gradient(135deg, 
        rgba(101, 213, 255, 0.08) 0%, 
        rgba(52, 152, 219, 0.05) 100%
    );
}

.hero--blueprint-enable .btn-enable {
    background: linear-gradient(135deg, #65D5FF, #3498db);
    color: #ffffff;
    border-color: #65D5FF;
    box-shadow: 0 4px 12px rgba(101, 213, 255, 0.2);
}

.hero--blueprint-enable .btn-enable:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 213, 255, 0.3);
}

.hero--blueprint-enable .btn-outline {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.3);
}

.hero--blueprint-enable .btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 12px rgba(101, 213, 255, 0.2);
}

.hero--blueprint-enable .feature-chip::before {
    background: linear-gradient(90deg, #65D5FF, #3498db);
}

/* Transform (Red) variant */
.hero--blueprint-transform {
    background:
        radial-gradient(circle at 50% 30%, rgba(255,107,123,0.12), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
}

.hero--blueprint-transform::before {
    background: radial-gradient(ellipse at top, 
        rgba(255, 107, 123, 0.08) 0%, 
        rgba(231, 76, 60, 0.06) 40%,
        transparent 70%
    );
}

.hero--blueprint-transform .process-highlight {
    border-image: linear-gradient(180deg, #ff6b7b, #e74c3c) 1;
    background: linear-gradient(135deg, 
        rgba(255, 107, 123, 0.08) 0%, 
        rgba(231, 76, 60, 0.05) 100%
    );
}

.hero--blueprint-transform .btn-transform {
    background: linear-gradient(135deg, #ff6b7b, #e74c3c);
    color: #ffffff;
    border-color: #ff6b7b;
    box-shadow: 0 4px 12px rgba(255, 107, 123, 0.2);
}

.hero--blueprint-transform .btn-transform:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 123, 0.3);
}

.hero--blueprint-transform .btn-outline {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.3);
}

.hero--blueprint-transform .btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 12px rgba(255, 107, 123, 0.2);
}

.hero--blueprint-transform .feature-chip::before {
    background: linear-gradient(90deg, #ff6b7b, #e74c3c);
}

/* Empower (Purple) variant */
.hero--blueprint-empower {
    background:
        radial-gradient(circle at 50% 30%, rgba(156,107,255,0.12), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
}

.hero--blueprint-empower::before {
    background: radial-gradient(ellipse at top, 
        rgba(156, 107, 255, 0.08) 0%, 
        rgba(142, 68, 173, 0.06) 40%,
        transparent 70%
    );
}

.hero--blueprint-empower .process-highlight {
    border-image: linear-gradient(180deg, #9c6bff, #8e44ad) 1;
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.08) 0%, 
        rgba(142, 68, 173, 0.05) 100%
    );
}

.hero--blueprint-empower .btn-empower {
    background: linear-gradient(135deg, #9c6bff, #8e44ad);
    color: #ffffff;
    border-color: #9c6bff;
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.2);
}

.hero--blueprint-empower .btn-empower:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 107, 255, 0.3);
}

.hero--blueprint-empower .btn-outline {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.3);
}

.hero--blueprint-empower .btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.2);
}

.hero--blueprint-empower .feature-chip::before {
    background: linear-gradient(90deg, #9c6bff, #8e44ad);
}

/* ==================== */
/* BUILD TIMELINE */
/* ==================== */

.build-timeline {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* Timeline Rail - Vertical */
.timeline-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-rail::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
    z-index: 0;
}

/* Progress Indicator - Vertical */
.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 0%;
    background: linear-gradient(180deg, var(--color-build), #65d5ff);
    transform: translateX(-50%);
    transition: height 0.6s ease;
    z-index: 1;
    box-shadow: 0 0 10px rgba(27, 179, 148, 0.3);
}

/* Timeline Item Container */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    min-height: 200px;
    margin-bottom: 2rem;
}

/* Node Button */
.timeline-node-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 2;
    padding: 0;
}

.timeline-node-btn .node-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-medium);
    transition: color var(--transition-base);
    line-height: 1;
}

.timeline-node-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(27, 179, 148, 0.4);
    box-shadow: 0 4px 12px rgba(27, 179, 148, 0.15);
}

.timeline-node-btn:focus {
    outline: 2px solid var(--color-build);
    outline-offset: 4px;
}

.timeline-item.active .timeline-node-btn {
    background: linear-gradient(135deg, var(--color-build), #65d5ff);
    border-color: var(--color-build);
    box-shadow: 0 4px 20px rgba(27, 179, 148, 0.3);
}

.timeline-item.active .timeline-node-btn .node-number {
    color: white;
}

/* Hide label (only number visible) */
.timeline-item .node-label {
    display: none;
}

/* Detail Cards - Alternating Layout */
.timeline-item .detail-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.timeline-item.active .detail-card {
    border-color: var(--color-build);
    box-shadow: 0 12px 40px rgba(27, 179, 148, 0.15);
    transform: scale(1.02);
}

/* Left side content (odd steps: 1, 3) */
.timeline-item[data-step="1"] .detail-card,
.timeline-item[data-step="3"] .detail-card {
    grid-column: 1;
}

/* Right side content (even steps: 2, 4) */
.timeline-item[data-step="2"] .detail-card,
.timeline-item[data-step="4"] .detail-card {
    grid-column: 3;
}

.detail-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.detail-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-build);
    margin-bottom: 1.5rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.detail-card ul li {
    font-size: 1rem;
    color: var(--color-gray-medium);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.detail-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-build);
    font-weight: 700;
    font-size: 1.25rem;
}

.deliverables-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-build);
}

/* Responsive: Mobile/Tablet */
@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .timeline-node-btn {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 1rem;
        z-index: 2;
    }
    
    .timeline-node-btn:hover {
        transform: scale(1.1);
    }
    
    /* All cards stack vertically on mobile */
    .timeline-item[data-step="1"] .detail-card,
    .timeline-item[data-step="2"] .detail-card,
    .timeline-item[data-step="3"] .detail-card,
    .timeline-item[data-step="4"] .detail-card {
        grid-column: auto;
        position: relative;
        z-index: 1;
    }
    
    .timeline-item.active .detail-card {
        transform: scale(1.01);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .timeline-progress,
    .timeline-item,
    .timeline-node-btn,
    .detail-card {
        transition: none;
    }
    
    .timeline-node-btn:hover,
    .timeline-item.active .detail-card {
        transform: none;
    }
}

/* ==================== */
/* TIMELINE COLOR VARIANTS (Enable, Transform, Empower) */
/* ==================== */

/* Enable (Blue) Timeline */
.timeline-progress-enable {
    background: linear-gradient(180deg, #65D5FF, #3498db);
}

.timeline-item.active .timeline-node-enable {
    background: linear-gradient(135deg, #65D5FF, #3498db);
    border-color: #65D5FF;
    box-shadow: 0 4px 20px rgba(101, 213, 255, 0.3);
}

.enable-timeline .timeline-node-btn:hover {
    border-color: rgba(101, 213, 255, 0.4);
    box-shadow: 0 4px 12px rgba(101, 213, 255, 0.15);
}

.enable-timeline .timeline-node-btn:focus {
    outline-color: #65D5FF;
}

.enable-timeline .detail-tagline {
    color: #65D5FF;
}

.enable-timeline .detail-card ul li::before {
    color: #65D5FF;
}

.enable-timeline .timeline-item.active .detail-card {
    border-color: #65D5FF;
    box-shadow: 0 12px 40px rgba(101, 213, 255, 0.15);
}

/* Transform (Red) Timeline */
.timeline-progress-transform {
    background: linear-gradient(180deg, #ff6b7b, #e74c3c);
}

.timeline-item.active .timeline-node-transform {
    background: linear-gradient(135deg, #ff6b7b, #e74c3c);
    border-color: #ff6b7b;
    box-shadow: 0 4px 20px rgba(255, 107, 123, 0.3);
}

.transform-timeline .timeline-node-btn:hover {
    border-color: rgba(255, 107, 123, 0.4);
    box-shadow: 0 4px 12px rgba(255, 107, 123, 0.15);
}

.transform-timeline .timeline-node-btn:focus {
    outline-color: #ff6b7b;
}

.transform-timeline .detail-tagline {
    color: #ff6b7b;
}

.transform-timeline .detail-card ul li::before {
    color: #ff6b7b;
}

.transform-timeline .timeline-item.active .detail-card {
    border-color: #ff6b7b;
    box-shadow: 0 12px 40px rgba(255, 107, 123, 0.15);
}

/* Empower (Purple) Timeline */
.timeline-progress-empower {
    background: linear-gradient(180deg, #9c6bff, #8e44ad);
}

.timeline-item.active .timeline-node-empower {
    background: linear-gradient(135deg, #9c6bff, #8e44ad);
    border-color: #9c6bff;
    box-shadow: 0 4px 20px rgba(156, 107, 255, 0.3);
}

.empower-timeline .timeline-node-btn:hover {
    border-color: rgba(156, 107, 255, 0.4);
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.15);
}

.empower-timeline .timeline-node-btn:focus {
    outline-color: #9c6bff;
}

.empower-timeline .detail-tagline {
    color: #9c6bff;
}

.empower-timeline .detail-card ul li::before {
    color: #9c6bff;
}

.empower-timeline .timeline-item.active .detail-card {
    border-color: #9c6bff;
    box-shadow: 0 12px 40px rgba(156, 107, 255, 0.15);
}

/* Deliverables note color variants */
.enable-timeline .deliverables-note {
    color: #65D5FF;
}

.transform-timeline .deliverables-note {
    color: #ff6b7b;
}

.empower-timeline .deliverables-note {
    color: #9c6bff;
}

/* ==================== */
/* ADVANTAGE SECTIONS (All Pillars) */
/* ==================== */

.build-advantage,
.enable-advantage,
.transform-advantage,
.empower-advantage {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Build Advantage */
.build-advantage {
    background: linear-gradient(135deg, 
        rgba(27, 179, 148, 0.03) 0%, 
        rgba(101, 213, 255, 0.02) 100%
    );
}

.build-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-build), #65d5ff);
}

/* Enable Advantage */
.enable-advantage {
    background: linear-gradient(135deg, 
        rgba(101, 213, 255, 0.03) 0%, 
        rgba(52, 152, 219, 0.02) 100%
    );
}

.enable-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #65D5FF, #3498db);
}

/* Transform Advantage */
.transform-advantage {
    background: linear-gradient(135deg, 
        rgba(255, 107, 123, 0.03) 0%, 
        rgba(231, 76, 60, 0.02) 100%
    );
}

.transform-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b7b, #e74c3c);
}

/* Empower Advantage */
.empower-advantage {
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.03) 0%, 
        rgba(142, 68, 173, 0.02) 100%
    );
}

.empower-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #9c6bff, #8e44ad);
}

/* Empower Advantage Banner - Featured Design */
.empower-advantage-banner {
    background: linear-gradient(135deg, #9c6bff 0%, #8e44ad 100%);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    box-shadow: 0 10px 40px rgba(156, 107, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.empower-advantage-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.empower-advantage-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.advantage-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.advantage-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.highlight-item:hover .highlight-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .advantage-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantage-highlights {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .empower-advantage-banner {
        padding: 2rem 1.5rem;
    }
}

/* ==================== */
/* EMPOWER CAPABILITIES GRID */
/* ==================== */

.empower-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.empower-capability-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.empower-capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, #9c6bff, #8e44ad);
    transition: height var(--transition-base);
}

.empower-capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(156, 107, 255, 0.15);
    border-color: rgba(156, 107, 255, 0.3);
}

.empower-capability-card:hover::before {
    height: 3px;
}

.empower-cap-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.1) 0%, 
        rgba(142, 68, 173, 0.05) 100%
    );
    border: 2px solid rgba(156, 107, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.empower-cap-icon i {
    font-size: 2rem;
    color: #9c6bff;
}

.empower-capability-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9c6bff;
    margin-bottom: 1rem;
}

.empower-capability-card > p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 1.5rem;
}

.cap-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.cap-details-grid h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #9c6bff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cap-details-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cap-details-grid ul li {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-gray-medium);
    padding-left: 1.25rem;
    position: relative;
}

.cap-details-grid ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9c6bff;
    font-weight: 700;
}

.cap-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    background: var(--color-gray-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.cap-highlights div {
    font-size: 0.9375rem;
    color: var(--color-gray-medium);
}

.cap-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cap-list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    padding-left: 1.5rem;
    position: relative;
}

.cap-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9c6bff;
    font-weight: 700;
    font-size: 1.25rem;
}

.cap-impact {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #9c6bff;
    padding: 1rem;
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.05) 0%, 
        rgba(142, 68, 173, 0.03) 100%
    );
    border-left: 3px solid #9c6bff;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .empower-capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cap-details-grid,
    .cap-highlights {
        grid-template-columns: 1fr;
    }
    
    .empower-capability-card {
        padding: 2rem 1.5rem;
    }
}

/* ==================== */
/* EMPOWER TEAM BANNER */
/* ==================== */

.empower-team-banner {
    margin-top: var(--spacing-xl);
    background: white;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #9c6bff, #8e44ad) 1;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(156, 107, 255, 0.12);
    position: relative;
}

.empower-team-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.team-intro {
    font-size: 1.125rem;
    color: var(--color-gray-medium);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.team-role {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all var(--transition-base);
    padding: 1.5rem;
    border-radius: 12px;
}

.team-role:hover {
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.05) 0%, 
        rgba(142, 68, 173, 0.03) 100%
    );
    transform: translateY(-4px);
}

.role-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c6bff, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.3);
    transition: all var(--transition-base);
}

.team-role:hover .role-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(156, 107, 255, 0.4);
}

.team-role h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #9c6bff;
    margin-bottom: 0.5rem;
}

.team-role p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 0;
}

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .empower-team-banner {
        padding: 2rem 1.5rem;
    }
}

/* ==================== */
/* INTEGRATED PILLARS & UTILITY CLASSES */
/* ==================== */

.integrated-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.pillar-box {
    padding: 1rem;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.pillar-box:hover {
    transform: translateY(-2px);
}

.pillar-build {
    background: rgba(27, 179, 148, 0.1);
}

.pillar-build h4 {
    color: #1bb394;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pillar-enable {
    background: rgba(101, 213, 255, 0.1);
}

.pillar-enable h4 {
    color: #65d5ff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pillar-transform {
    background: rgba(255, 107, 123, 0.1);
}

.pillar-transform h4 {
    color: #ff6b7b;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pillar-box p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-gray-medium);
    margin-bottom: 0;
}

.impact-note,
.reporting-note {
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #9c6bff;
}

/* Responsive */
@media (max-width: 768px) {
    .integrated-pillars {
        grid-template-columns: 1fr;
    }
}

/* Common Advantage Section Heading and Grid */
.build-advantage h3,
.enable-advantage h3,
.transform-advantage h3,
.empower-advantage h3 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.advantage-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, var(--color-build), #65d5ff);
    transition: height var(--transition-base);
}

/* Color variants for advantage cards */
.enable-advantage .advantage-card::before {
    background: linear-gradient(90deg, #65D5FF, #3498db);
}

.transform-advantage .advantage-card::before {
    background: linear-gradient(90deg, #ff6b7b, #e74c3c);
}

.empower-advantage .advantage-card::before {
    background: linear-gradient(90deg, #9c6bff, #8e44ad);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27, 179, 148, 0.12);
    border-color: rgba(27, 179, 148, 0.3);
}

.advantage-card:hover::before {
    height: 3px;
}

.advantage-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(27, 179, 148, 0.1) 0%, 
        rgba(101, 213, 255, 0.05) 100%
    );
    border-radius: 12px;
    border: 1px solid rgba(27, 179, 148, 0.2);
}

.enable-advantage .advantage-icon {
    background: linear-gradient(135deg, 
        rgba(101, 213, 255, 0.1) 0%, 
        rgba(52, 152, 219, 0.05) 100%
    );
    border-color: rgba(101, 213, 255, 0.2);
}

.transform-advantage .advantage-icon {
    background: linear-gradient(135deg, 
        rgba(255, 107, 123, 0.1) 0%, 
        rgba(231, 76, 60, 0.05) 100%
    );
    border-color: rgba(255, 107, 123, 0.2);
}

.empower-advantage .advantage-icon {
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.1) 0%, 
        rgba(142, 68, 173, 0.05) 100%
    );
    border-color: rgba(156, 107, 255, 0.2);
}

.advantage-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-build);
    margin-bottom: 0.75rem;
}

.enable-advantage .advantage-card h4 {
    color: #65D5FF;
}

.transform-advantage .advantage-card h4 {
    color: #ff6b7b;
}

.empower-advantage .advantage-card h4 {
    color: #9c6bff;
}

.advantage-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .build-advantage,
    .enable-advantage,
    .transform-advantage,
    .empower-advantage {
        padding: 1.5rem;
    }
}

/* ==================== */
/* COMPARISON TABLE (Empower Page) */
/* ==================== */

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    table-layout: fixed;
}

/* Dark header variant (matching Build vs. Buy style) */
.comparison-table-dark thead tr {
    background: #333;
    color: white;
}

.comparison-table-dark th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.comparison-table-dark .col-factor {
    width: 20%;
}

.comparison-table-dark .col-traditional {
    width: 40%;
}

.comparison-table-dark .col-empower {
    width: 40%;
    background: #9c6bff;
}

.comparison-table-dark tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table-dark tbody tr:last-child {
    border-bottom: none;
}

.comparison-table-dark td {
    padding: 1rem;
}

.comparison-table-dark .factor-cell {
    font-weight: 600;
}

.comparison-table-dark .traditional-cell {
    color: var(--color-gray-medium);
}

.comparison-table-dark .empower-cell {
    background: rgba(156, 107, 255, 0.1);
}

.comparison-table-dark .empower-cell strong {
    color: #0B0D10;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-table,
    .comparison-table-dark {
        table-layout: auto;
    }
    
    .comparison-table th,
    .comparison-table td,
    .comparison-table-dark th,
    .comparison-table-dark td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* ==================== */
/* STRATEGIC BENEFITS (Empower) */
/* ==================== */

.strategic-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.strategic-benefit-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.strategic-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, #9c6bff, #8e44ad);
    transition: height var(--transition-base);
}

.strategic-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(156, 107, 255, 0.15);
    border-color: rgba(156, 107, 255, 0.3);
}

.strategic-benefit-card:hover::before {
    height: 3px;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.benefit-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c6bff, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-circle i {
    font-size: 1.75rem;
    color: white;
}

.benefit-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #9c6bff;
    margin-bottom: 0;
}

.benefit-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9c6bff;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Comparison boxes */
.benefit-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.challenge-box,
.solution-box {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.challenge-box {
    background: var(--color-gray-light);
    border: 1px solid var(--color-border);
}

.solution-box {
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.08) 0%, 
        rgba(142, 68, 173, 0.05) 100%
    );
    border: 1px solid rgba(156, 107, 255, 0.2);
}

.challenge-box .label,
.solution-box .label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.challenge-box .label {
    color: var(--color-gray-medium);
}

.solution-box .label {
    color: #9c6bff;
}

.challenge-box p,
.solution-box p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-dark);
    margin-bottom: 0;
}

/* Cost comparison */
.cost-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cost-item {
    text-align: center;
    padding: 1.25rem;
    background: var(--color-gray-light);
    border-radius: 8px;
}

.cost-empower {
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.08) 0%, 
        rgba(142, 68, 173, 0.05) 100%
    );
    border: 2px solid rgba(156, 107, 255, 0.2);
}

.cost-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cost-empower .cost-label {
    color: #9c6bff;
}

.cost-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0.5rem 0;
}

.cost-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-gray-medium);
}

.versus {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gray-medium);
    text-transform: uppercase;
}

/* Benefit outcome boxes */
.benefit-outcome {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--color-gray-light);
    border-left: 3px solid #9c6bff;
    border-radius: 4px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-dark);
}

.benefit-outcome.savings,
.benefit-outcome.impact {
    font-weight: 600;
    color: #9c6bff;
}

.benefit-outcome.savings i,
.benefit-outcome.impact i {
    margin-right: 0.5rem;
    color: #16a085;
}

.benefit-outcome.results strong {
    color: #9c6bff;
}

.roi-banner {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #9c6bff 0%, #8e44ad 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.3);
}

.roi-banner strong {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .strategic-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefit-comparison,
    .cost-comparison {
        grid-template-columns: 1fr;
    }
    
    .versus {
        display: none;
    }
    
    .strategic-benefit-card {
        padding: 2rem 1.5rem;
    }
}

/* ==================== */
/* TARGET AUDIENCE (Empower) */
/* ==================== */

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.audience-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(156, 107, 255, 0.12);
    border-color: rgba(156, 107, 255, 0.3);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.1) 0%, 
        rgba(142, 68, 173, 0.05) 100%
    );
    border: 2px solid rgba(156, 107, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.audience-icon i {
    font-size: 1.75rem;
    color: #9c6bff;
}

.audience-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.audience-profile {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-gray-light);
    border-radius: 8px;
}

.why-it-works h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #9c6bff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.why-it-works ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-it-works ul li {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-gray-medium);
    padding-left: 1.25rem;
    position: relative;
}

.why-it-works ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9c6bff;
    font-weight: 700;
}

/* Scenario Cards */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.scenario-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all var(--transition-base);
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(156, 107, 255, 0.12);
    border-color: rgba(156, 107, 255, 0.3);
}

.scenario-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9c6bff, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.3);
}

.scenario-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.scenario-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    padding: 0.75rem;
    background: var(--color-gray-light);
    border-radius: 6px;
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9c6bff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.meta-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
}

.scenario-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 0;
}

/* Engagement Sizing */
.engagement-sizing-section {
    margin-top: var(--spacing-xl);
    background: white;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.engagement-sizing-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.sizing-tier {
    text-align: center;
    padding: 2rem;
    background: var(--color-gray-light);
    border-radius: 12px;
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}

.sizing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(156, 107, 255, 0.1);
    border-color: rgba(156, 107, 255, 0.3);
}

.tier-featured {
    background: linear-gradient(135deg, 
        rgba(156, 107, 255, 0.05) 0%, 
        rgba(142, 68, 173, 0.03) 100%
    );
    border-color: #9c6bff;
    position: relative;
}

.tier-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: linear-gradient(135deg, #9c6bff, #8e44ad);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #9c6bff;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.tier-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.tier-annual {
    font-size: 0.9375rem;
    color: var(--color-gray-medium);
    margin-bottom: 1.5rem;
}

.tier-team,
.tier-for {
    font-size: 0.9375rem;
    color: var(--color-gray-medium);
    margin-bottom: 0.75rem;
}

.tier-team {
    font-weight: 600;
}

.tier-includes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
}

/* Responsive */
@media (max-width: 1024px) {
    .target-audience-grid {
        grid-template-columns: 1fr;
    }
    
    .sizing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scenario-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-meta {
        grid-template-columns: 1fr;
    }
    
    .audience-card,
    .scenario-card,
    .engagement-sizing-section {
        padding: 2rem 1.5rem;
    }
}

/* ==================== */
/* CAPABILITY MATRIX DASHBOARD */
/* ==================== */

.capability-dashboard {
    background: #F9FAFB;
    padding: var(--spacing-xl) 0;
}

/* 2x2 Capability Grid */
.capability-matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Individual Capability Tiles */
.capability-tile {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Gradient accent dot */
.capability-tile::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #19B394, #65D5FF);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(25, 179, 148, 0.5);
}

.capability-tile:hover,
.capability-tile:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(101, 213, 255, 0.15);
    border-color: rgba(27, 179, 148, 0.2);
}

.capability-tile:hover::before {
    box-shadow: 0 0 20px rgba(25, 179, 148, 0.7);
}

/* Tile Icon */
.tile-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
    display: inline-block;
}

/* Tile Heading */
.capability-tile h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #0B0D10;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Tile Intro */
.tile-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #556070;
    margin-bottom: 1.75rem;
}

/* Two-Column Layout (Capabilities | Benefits) */
.tile-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tile-columns h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #19B394;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tile-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tile-columns ul li {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #555555;
    padding-left: 1.25rem;
    position: relative;
}

.tile-columns ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #19B394;
    font-weight: 700;
}

/* Technology Stack Dashboard */
.tech-stack-dashboard {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Gradient top border */
.tech-stack-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #19B394, #65D5FF);
}

.tech-stack-dashboard h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0B0D10;
    margin-bottom: 2rem;
    text-align: center;
}

/* Tech Stack 4-Column Row */
.tech-stack-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tech-mini-panel {
    text-align: center;
}

.mini-panel-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.tech-mini-panel h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #19B394;
    margin-bottom: 0.75rem;
}

.tech-mini-panel p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .capability-matrix-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tile-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-stack-row {
        grid-template-columns: 1fr;
    }
    
    .capability-tile,
    .tech-stack-dashboard {
        padding: 1.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .capability-tile:hover,
    .capability-tile:focus-within {
        transform: none;
    }
}

/* ==================== */
/* BENEFITS HUB */
/* ==================== */

.benefits-hub {
    background: white;
    padding: var(--spacing-xl) 0;
}

/* KPI Impact Banner */
.kpi-banner {
    background: linear-gradient(135deg, #19B394, #65D5FF);
    border-radius: 16px;
    padding: 3rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(27, 179, 148, 0.2);
}

.kpi-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
}

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

.kpi-item {
    position: relative;
}

.kpi-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.kpi-label {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Benefits Grid with Groups */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.group-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #19B394;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #19B394;
}

.group-tiles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Benefit Tiles */
.benefit-tile {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, #19B394, #65D5FF);
    transition: height var(--transition-base);
}

.benefit-tile:hover,
.benefit-tile:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(101, 213, 255, 0.15);
    border-color: rgba(27, 179, 148, 0.2);
}

.benefit-tile:hover::before,
.benefit-tile:focus-within::before {
    height: 3px;
}

.benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-tile h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0B0D10;
    margin-bottom: 1rem;
}

.benefit-tile p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #556070;
    margin-bottom: 0.75rem;
}

.benefit-tile ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-tile ul li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #556070;
    padding-left: 1.25rem;
    position: relative;
}

.benefit-tile ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #19B394;
    font-weight: 700;
}

/* Impact Callout */
.impact-callout {
    margin-top: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(27, 179, 148, 0.05), rgba(101, 213, 255, 0.03));
    border-left: 3px solid #19B394;
    border-radius: 4px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #0B0D10;
}

.impact-callout strong {
    color: #19B394;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .kpi-banner {
        padding: 2rem 1.5rem;
    }
    
    .kpi-number {
        font-size: 2.5rem;
    }
    
    .benefit-tile {
        padding: 1.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .benefit-tile:hover,
    .benefit-tile:focus-within {
        transform: none;
    }
    
    .kpi-number {
        animation: none !important;
    }
}

/* ==================== */
/* FONT AWESOME ICON STYLING */
/* ==================== */

/* General icon styling */
.fa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hero feature chip icons */
.chip-icon i {
    font-size: 1.5rem;
}

/* Capability tile icons */
.tile-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-build), #65d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Capability icon badge (single column showcase) */
.capability-icon-badge i {
    font-size: 3rem;
    color: var(--color-build);
}

/* Empower capability icons */
.empower-capability .capability-icon-badge i {
    color: #9c6bff;
}

.empower-capability .capability-showcase-card h3 {
    color: #9c6bff;
}

.empower-capability .capability-columns h4 {
    color: #9c6bff;
}

.empower-capability .capability-columns ul li::before,
.empower-capability .capability-simple-list li::before {
    color: #9c6bff;
}

/* Benefit tile icons */
.benefit-icon i {
    font-size: 2.5rem;
    color: var(--color-build);
}

/* Advantage card icons */
.advantage-icon i {
    font-size: 2rem;
    color: var(--color-build);
}

/* Tech stack icons */
.mini-panel-icon i {
    font-size: 2rem;
    color: var(--color-build);
}

/* Color variants for different pillars */
.hero--blueprint-enable .chip-icon i,
.enable-advantage .advantage-icon i {
    color: #65D5FF;
}

.hero--blueprint-transform .chip-icon i,
.transform-advantage .advantage-icon i {
    color: #ff6b7b;
}

.hero--blueprint-empower .chip-icon i,
.empower-advantage .advantage-icon i {
    color: #9c6bff;
}

/* Inline icons in headings */
h3 i, h4 i {
    margin-right: 0.5rem;
}

/* Card heading icons inherit their styled color */
.card h3 i {
    display: inline-block;
    width: 1.5em;
    text-align: center;
}

/* ==================== */
/* 8. CARDS & FEATURES */
/* ==================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

/* ==================== */
/* INTERACTIVE ORBIT LAYOUT */
/* ==================== */

/* Two-Column Layout: Orbit Left, Content Right */
.orbit-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .orbit-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Single column layout for mobile */
    .orbit-layout {
        gap: 2rem;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    
    /* Hide the entire orbit animation container on mobile */
    .orbit-container {
        display: none !important;
    }
    
    /* Show all 4 pillar cards in single column */
    .orbit-details {
        min-height: auto;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* Show all detail panels as cards in single column */
    .detail-panel {
        display: block !important;
        opacity: 1 !important;
        width: 100%;
        margin-bottom: 1.5rem;
        animation: none !important;
    }
    
    /* Hide the default "Explore Our Services" panel on mobile - must come after .detail-panel rule */
    .panel-default,
    #detail-default,
    .detail-panel.panel-default {
        display: none !important;
        opacity: 0 !important;
    }
    
    .detail-panel:last-child {
        margin-bottom: 0;
    }
    
    /* Style detail panels as cards - mobile already has colored backgrounds */
    .detail-panel .detail-content {
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .detail-panel .detail-content:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        transform: translateY(-2px);
    }
}

.orbit-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Core */
.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid rgba(0,0,0,0.08);
    box-shadow: 
        0 6px 24px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.5) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-base);
}

.orbit-core:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.12),
        0 0 0 1px rgba(255,255,255,0.8) inset;
}

.core-inner {
    text-align: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.core-logo-img {
    width: 100%;
    height: auto;
    max-width: 68px;
    transition: all var(--transition-base);
}

.orbit-core:hover .core-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(27,179,148,0.2));
}

/* Orbit Rings (Animated) */
.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(27,179,148,0.2);
    animation: rotateRing 20s linear infinite;
    pointer-events: none;
}

.core-ring.ring-2 {
    width: 160px;
    height: 160px;
    border-color: rgba(101,213,255,0.15);
    animation: rotateRing 25s linear infinite reverse;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Orbit Path (SVG) */
.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    pointer-events: none;
    z-index: 1;
}

/* Orbiting Nodes */
.orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition-base);
}

.orbit-node:hover {
    z-index: 15;
}

.orbit-node.active .node-dot {
    transform: scale(1.6);
    border-width: 4px;
}

.orbit-node.active .node-label {
    opacity: 1;
    font-weight: 700;
}

/* Node Positions (Clockwise from top) */
.node-build {
    transform: translate(-50%, -50%) translate(0, -180px);
}

.node-enable {
    transform: translate(-50%, -50%) translate(180px, 0);
}

.node-transform {
    transform: translate(-50%, -50%) translate(0, 180px);
}

.node-empower {
    transform: translate(-50%, -50%) translate(-180px, 0);
}

/* Node Dot */
.node-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

/* Radar Ping Ring */
.node-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: radarPing 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes radarPing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.node-build .node-dot {
    border-color: var(--color-build);
    box-shadow: 0 4px 12px rgba(27,179,148,0.3), 0 0 20px rgba(27,179,148,0.2);
}

.node-build .node-dot::before {
    border-color: var(--color-build);
    animation-delay: 0s;
}

.node-enable .node-dot {
    border-color: var(--color-enable);
    box-shadow: 0 4px 12px rgba(101,213,255,0.3), 0 0 20px rgba(101,213,255,0.2);
}

.node-enable .node-dot::before {
    border-color: var(--color-enable);
    animation-delay: 0.625s;
}

.node-transform .node-dot {
    border-color: var(--color-transform);
    box-shadow: 0 4px 12px rgba(255,107,123,0.3), 0 0 20px rgba(255,107,123,0.2);
}

.node-transform .node-dot::before {
    border-color: var(--color-transform);
    animation-delay: 1.25s;
}

.node-empower .node-dot {
    border-color: var(--color-empower);
    box-shadow: 0 4px 12px rgba(156,107,255,0.3), 0 0 20px rgba(156,107,255,0.2);
}

.node-empower .node-dot::before {
    border-color: var(--color-empower);
    animation-delay: 1.875s;
}

.orbit-node:hover .node-dot {
    transform: scale(1.5);
    animation: none;
}

.node-build:hover .node-dot {
    box-shadow: 0 6px 24px rgba(27,179,148,0.6), 0 0 40px rgba(27,179,148,0.5);
}

.node-enable:hover .node-dot {
    box-shadow: 0 6px 24px rgba(101,213,255,0.6), 0 0 40px rgba(101,213,255,0.5);
}

.node-transform:hover .node-dot {
    box-shadow: 0 6px 24px rgba(255,107,123,0.6), 0 0 40px rgba(255,107,123,0.5);
}

.node-empower:hover .node-dot {
    box-shadow: 0 6px 24px rgba(156,107,255,0.6), 0 0 40px rgba(156,107,255,0.5);
}

/* Node Label */
.node-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
    pointer-events: none;
    transition: all var(--transition-fast);
    opacity: 0;
}

.orbit-node:hover .node-label {
    opacity: 1;
}

.node-build .node-label {
    transform: translate(-50%, -50%) translateY(-45px);
}

.node-enable .node-label {
    transform: translate(-50%, -50%) translateX(50px);
}

.node-transform .node-label {
    transform: translate(-50%, -50%) translateY(45px);
}

.node-empower .node-label {
    transform: translate(-50%, -50%) translateX(-60px);
}

/* Detail Panels (Right Column) */
.orbit-details {
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-panel {
    display: none;
    opacity: 0;
    width: 100%;
}

.detail-panel.active {
    display: block;
    animation: fadeInRight 0.4s ease-out forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.detail-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.default-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(25,179,148,0.08), transparent 70%),
        linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.default-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 375px;
    height: 375px;
    background: radial-gradient(circle, rgba(101,213,255,0.3), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.default-content h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.default-content .detail-tagline {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.default-content p {
    max-width: 500px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.85) !important;
    position: relative;
    z-index: 1;
}

.default-content .btn {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.default-content .btn-primary {
    background-color: white;
    color: var(--color-dark);
    border-color: white;
}

.default-content .btn-primary:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.detail-tagline {
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.detail-content > p:not(.detail-tagline) {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 1rem;
}

.detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.detail-content ul li {
    font-size: 0.9375rem;
    color: var(--color-gray-dark);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1rem;
}

/* Build Panel - Green Background */
.panel-build .detail-content {
    background: linear-gradient(135deg, var(--color-build) 0%, rgba(27,179,148,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}
.panel-build h3 { color: white; }
.panel-build .detail-tagline { color: rgba(255,255,255,0.9); }
.panel-build p { color: rgba(255,255,255,0.85) !important; }
.panel-build ul li { color: rgba(255,255,255,0.9); }
.panel-build ul li::before { color: white; }
.panel-build .btn-build {
    background-color: white;
    color: var(--color-build);
    border-color: white;
}
.panel-build .btn-build:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.panel-build .btn-build .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.panel-build .btn-build:hover .btn-arrow {
    transform: translateX(5px);
}

/* Enable Panel - Blue Background */
.panel-enable .detail-content {
    background: linear-gradient(135deg, var(--color-enable) 0%, rgba(101,213,255,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}
.panel-enable h3 { color: white; }
.panel-enable .detail-tagline { color: rgba(255,255,255,0.9); }
.panel-enable p { color: rgba(255,255,255,0.85) !important; }
.panel-enable ul li { color: rgba(255,255,255,0.9); }
.panel-enable ul li::before { color: white; }
.panel-enable .btn-enable {
    background-color: white;
    color: var(--color-enable);
    border-color: white;
}
.panel-enable .btn-enable:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.panel-enable .btn-enable .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.panel-enable .btn-enable:hover .btn-arrow {
    transform: translateX(5px);
}

/* Transform Panel - Red Background */
.panel-transform .detail-content {
    background: linear-gradient(135deg, var(--color-transform) 0%, rgba(235,85,85,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}
.panel-transform h3 { color: white; }
.panel-transform .detail-tagline { color: rgba(255,255,255,0.9); }
.panel-transform p { color: rgba(255,255,255,0.85) !important; }
.panel-transform ul li { color: rgba(255,255,255,0.9); }
.panel-transform ul li::before { color: white; }
.panel-transform .btn-transform {
    background-color: white;
    color: var(--color-transform);
    border-color: white;
}
.panel-transform .btn-transform:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.panel-transform .btn-transform .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.panel-transform .btn-transform:hover .btn-arrow {
    transform: translateX(5px);
}

/* Empower Panel - Purple Background */
.panel-empower .detail-content {
    background: linear-gradient(135deg, var(--color-empower) 0%, rgba(156,107,255,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}
.panel-empower h3 { color: white; }
.panel-empower .detail-tagline { color: rgba(255,255,255,0.9); }
.panel-empower p { color: rgba(255,255,255,0.85) !important; }
.panel-empower ul li { color: rgba(255,255,255,0.9); }
.panel-empower ul li::before { color: white; }
.panel-empower .btn-empower {
    background-color: white;
    color: var(--color-empower);
    border-color: white;
}
.panel-empower .btn-empower:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.panel-empower .btn-empower .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.panel-empower .btn-empower:hover .btn-arrow {
    transform: translateX(5px);
}

/* Mobile Orbit Adjustments */
@media (max-width: 768px) {
    .orbit-container {
        height: 500px;
        max-width: 500px;
    }
    
    .orbit-core {
        width: 120px;
        height: 120px;
    }
    
    .core-logo-img {
        max-width: 52px;
    }
    
    .orbit-path {
        width: 500px;
        height: 500px;
    }
    
    .node-build {
        transform: translate(-50%, -50%) translate(0, -170px);
    }
    
    .node-enable {
        transform: translate(-50%, -50%) translate(170px, 0);
    }
    
    .node-transform {
        transform: translate(-50%, -50%) translate(0, 170px);
    }
    
    .node-empower {
        transform: translate(-50%, -50%) translate(-170px, 0);
    }
    
    
    .detail-content {
        padding: 2rem;
    }
    
    .detail-content ul {
        grid-template-columns: 1fr;
    }
}

/* Enhanced pillar cards for 2x2 compact layout */
.pillar-grid .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: visible;
}

.pillar-grid .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3) inset;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pillar-grid .card:hover::after {
    opacity: 0.6;
}

.pillar-grid .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.pillar-grid .card .subtitle {
    font-size: 0.9375rem;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: var(--color-gray-dark);
}

.pillar-grid .card > p:not(.subtitle) {
    flex-grow: 1;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
}

.pillar-grid .card ul {
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.pillar-grid .card ul li {
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--color-gray-dark);
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.pillar-grid .card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1rem;
}

.pillar-grid .pillar-card-build ul li::before {
    color: var(--color-build);
}

.pillar-grid .pillar-card-enable ul li::before {
    color: var(--color-enable);
}

.pillar-grid .pillar-card-transform ul li::before {
    color: var(--color-transform);
}

.pillar-grid .pillar-card-empower ul li::before {
    color: var(--color-empower);
}

.pillar-grid .card-link {
    margin-top: auto;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pillar-grid .card-link::after {
    content: '→';
    font-size: 1.125rem;
    transition: transform var(--transition-fast);
    display: inline-block;
}

.pillar-grid .card-link:hover {
    gap: 0.75rem;
}

.pillar-grid .card-link:hover::after {
    transform: translateX(4px);
}

/* Section Header Styling */
.section-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-build) 0%,
        var(--color-enable) 33%,
        var(--color-transform) 66%,
        var(--color-empower) 100%
    );
    border-radius: 2px;
}

.section-header .subtitle {
    margin-top: var(--spacing-lg);
    margin-bottom: 0;
}

/* Benefits Grid - Compact 3-column layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: var(--spacing-lg) 0;
}

.benefits-grid .card {
    padding: 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
}

.benefits-grid .card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.benefits-grid .card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 0.75rem;
}

.benefits-grid .card p:last-child {
    margin-bottom: 0;
}

.benefits-grid .card p strong {
    color: var(--color-dark);
    font-weight: 600;
}

.benefits-grid .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid .card {
        padding: 1.5rem;
    }
    
    /* Contact page: Single column layout on mobile */
    .section-light .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Pillars CTA Section */
.pillars-cta {
    text-align: center;
    margin-top: var(--spacing-xxl);
    padding: 3rem;
    background: 
        linear-gradient(135deg, rgba(27,179,148,0.04) 0%, rgba(101,213,255,0.06) 50%, rgba(156,107,255,0.04) 100%),
        #fafafa;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 
        0 4px 24px rgba(0,0,0,0.04),
        0 0 0 1px rgba(255,255,255,0.5) inset;
    position: relative;
}

.pillars-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--color-build) 25%,
        var(--color-enable) 50%,
        var(--color-transform) 75%,
        transparent 100%
    );
    opacity: 0.3;
}

.pillars-cta-text {
    font-size: 1.125rem;
    color: var(--color-gray-dark);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.pillars-cta-text strong {
    color: var(--color-dark);
    font-weight: 600;
}

.pillars-cta .btn {
    box-shadow: 
        0 4px 20px rgba(27, 179, 148, 0.25),
        0 2px 8px rgba(27, 179, 148, 0.15);
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

.pillars-cta .btn:hover {
    box-shadow: 
        0 6px 28px rgba(27, 179, 148, 0.35),
        0 4px 12px rgba(27, 179, 148, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pillars-cta {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-lg);
    }
    
    .pillars-cta-text {
        font-size: 1rem;
    }
}

.card {
    background-color: var(--color-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    position: relative;
    background: currentColor;
    opacity: 0.08;
    transition: all var(--transition-base);
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: currentColor;
    opacity: 1;
    box-shadow: 0 0 12px currentColor;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.card:hover .card-icon {
    opacity: 0.12;
    transform: scale(1.04);
}

.card:hover .card-icon::before {
    box-shadow: 0 0 16px currentColor;
}

.card h3 {
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-md);
}

.card-link {
    color: var(--color-build);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link::after {
    content: '→';
    transition: var(--transition-fast);
}

/* Pillar Cards */
.pillar-card {
    position: relative;
    overflow: visible;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
    border-radius: 12px 0 0 12px;
    transition: var(--transition-base);
    box-shadow: 0 0 8px currentColor;
    opacity: 0.6;
}

.pillar-card:hover::before {
    width: 4px;
    opacity: 0.8;
    box-shadow: 0 0 12px currentColor;
}

.pillar-card-build::before { 
    background: linear-gradient(180deg, var(--color-build) 0%, #16a085 100%);
    color: var(--color-build);
}

.pillar-card-enable::before { 
    background: linear-gradient(180deg, var(--color-enable) 0%, #3498db 100%);
    color: var(--color-enable);
}

.pillar-card-transform::before { 
    background: linear-gradient(180deg, var(--color-transform) 0%, #e74c3c 100%);
    color: var(--color-transform);
}

.pillar-card-empower::before { 
    background: linear-gradient(180deg, var(--color-empower) 0%, #8e44ad 100%);
    color: var(--color-empower);
}

/* ==================== */
/* 9. VALUE CHAIN VISUALIZATION */
/* ==================== */

.value-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.value-chain-item {
    flex: 1;
    min-width: 200px;
    padding: var(--spacing-lg);
    text-align: center;
    background: var(--color-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-base);
}

.value-chain-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.value-chain-item::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--color-gray-medium);
}

.value-chain-item:last-child::after {
    content: '';
}

.value-chain-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    line-height: 1;
}

.value-chain-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.value-chain-desc {
    color: var(--color-gray-medium);
    font-size: 0.9375rem;
}

/* ==================== */
/* 10. FORMS */
/* ==================== */

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Epilogue', sans-serif;
    transition: var(--transition-fast);
    background-color: var(--color-light);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-build);
    box-shadow: 0 0 0 3px rgba(27, 179, 148, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.form-submit {
    width: 100%;
}

/* ==================== */
/* 11. FOOTER - COMPACT DARK */
/* ==================== */

footer {
    background: linear-gradient(180deg, #0B0D10 0%, #080A0C 100%);
    color: var(--mq-text);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(25,179,148,0.15);
    box-shadow: inset 0 1px 0 rgba(25,179,148,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(232,238,247,0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--mq-teal);
    transform: translateX(3px);
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(25,179,148,0.3));
    transition: all var(--transition-base);
}

.footer-logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(25,179,148,0.6));
}

.footer-tagline {
    font-style: italic;
    font-weight: 300;
    color: rgba(232,238,247,0.6);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(25,179,148,0.1);
    border: 1px solid rgba(25,179,148,0.2);
    border-radius: 50%;
    transition: all var(--transition-fast);
    font-size: 0.875rem;
}

.footer-social a:hover {
    background-color: rgba(25,179,148,0.2);
    border-color: var(--mq-teal);
    box-shadow: 0 0 15px rgba(25,179,148,0.4);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(25,179,148,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(232,238,247,0.5);
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(232,238,247,0.6);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--mq-teal);
}

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

.footer-legal a {
    color: rgba(232,238,247,0.5);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--mq-teal);
}

/* Pre-footer CTA */
.pre-footer-cta {
    background: var(--gradient-build);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    color: var(--color-light);
}

.pre-footer-cta h2 {
    color: var(--color-light);
    margin-bottom: var(--spacing-md);
}

.pre-footer-cta .btn-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== */
/* 12. COOKIE BANNER */
/* ==================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222222;
    color: #ffffff;
    padding: var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition-base);
    border-top: 3px solid var(--color-build);
}

.cookie-banner.show {
    transform: translateY(0);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--color-build);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner a:hover {
    color: var(--color-success);
}

.cookie-banner-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.cookie-banner .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.cookie-banner .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cookie-banner .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

.cookie-banner .btn-primary {
    background-color: var(--color-build);
    color: #ffffff;
    border-color: var(--color-build);
}

.cookie-banner .btn-primary:hover {
    background-color: var(--color-success);
    border-color: var(--color-success);
}

/* ==================== */
/* 13. UTILITY CLASSES */
/* ==================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

.color-build { color: var(--color-build); }
.color-enable { color: var(--color-enable); }
.color-transform { color: var(--color-transform); }
.color-empower { color: var(--color-empower); }

.bg-build { background-color: var(--color-build); }
.bg-enable { background-color: var(--color-enable); }
.bg-transform { background-color: var(--color-transform); }
.bg-empower { background-color: var(--color-empower); }

.hidden { display: none; }
.visible { display: block; }

/* ==================== */
/* 14. RESPONSIVE DESIGN */
/* ==================== */

@media (max-width: 768px) {
    /* Mobile menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--color-light);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        z-index: 1000;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    
    nav ul li {
        width: 100%;
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown {
        width: 100%;
        transform: none !important;
    }
    
    .dropdown:hover .dropdown-menu {
        transform: none !important;
    }
    
    .dropdown-toggle {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        padding: 0;
        margin: 0;
        width: 100%;
        min-width: auto;
        background-color: rgba(0,0,0,0.02);
        border-radius: 0;
        transition: none !important;
        left: auto !important;
        right: auto !important;
    }
    
    .dropdown-menu li {
        width: 100%;
        transform: none !important;
        transition: none !important;
    }
    
    .dropdown-item {
        width: 100%;
        padding: 0.875rem 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: background-color 0.2s ease;
        transform: none !important;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--color-gray-light);
        transform: none !important;
    }
    
    .dropdown-menu li:first-child .dropdown-item,
    .dropdown-menu li:last-child .dropdown-item {
        border-radius: 0;
    }
    
    .btn-small {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Hero */
    .hero {
        padding: var(--spacing-xl) var(--spacing-md);
        min-height: auto;
    }
    
    .hero h1 {
        margin-bottom: var(--spacing-md);
    }
    
    .hero .subtitle {
        margin-bottom: var(--spacing-md);
    }
    
    .hero p {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
        margin-top: var(--spacing-md);
    }
    
    .hero-cta .btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Cards */
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    /* Value Chain */
    .value-chain {
        flex-direction: column;
    }
    
    .value-chain-item::after {
        content: '↓';
        right: auto;
        bottom: -2rem;
        top: auto;
        transform: none;
    }
    
    /* Service Offerings */
    .service-offerings {
        grid-template-columns: 1fr;
    }
    
    .service-offering-item .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
    }
    
    /* Cookie Banner */
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ==================== */
/* 15. ANIMATIONS */
/* ==================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slide-left {
    transform: translateX(-30px);
}

.animate-on-scroll.slide-left.visible {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(30px);
}

.animate-on-scroll.slide-right.visible {
    transform: translateX(0);
}

.animate-on-scroll.scale-in {
    transform: scale(0.95);
}

.animate-on-scroll.scale-in.visible {
    transform: scale(1);
}

/* Stagger animations for card grids - only when .animate class is present */
.card-grid.animate .card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.card-grid.animate .card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-grid.animate .card:nth-child(1) {
    transition-delay: 0.1s;
}

.card-grid.animate .card:nth-child(2) {
    transition-delay: 0.2s;
}

.card-grid.animate .card:nth-child(3) {
    transition-delay: 0.3s;
}

.card-grid.animate .card:nth-child(4) {
    transition-delay: 0.4s;
}

.card-grid.animate .card:nth-child(5) {
    transition-delay: 0.5s;
}

.card-grid.animate .card:nth-child(6) {
    transition-delay: 0.6s;
}

/* AI-inspired animations */
@keyframes dataFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ai-gradient {
    background: linear-gradient(
        45deg,
        rgba(27,179,148,0.1),
        rgba(101,213,255,0.1),
        rgba(255,107,123,0.1),
        rgba(156,107,255,0.1)
    );
    background-size: 400% 400%;
    animation: dataFlow 15s ease infinite;
}

/* ==================== */
/* 16. ACCESSIBILITY */
/* ==================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== */
/* 17. PRINT STYLES */
/* ==================== */

@media print {
    header,
    footer,
    .cookie-banner,
    .btn,
    nav {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ==================== */
/* 17. AI JOURNEY TILES */
/* ==================== */

.ai-journey-section {
    background: 
        radial-gradient(circle at 50% 20%, rgba(25,179,148,0.06), transparent 60%),
        linear-gradient(180deg, #12171C 0%, #0B0D10 100%);
    padding: var(--spacing-xxl) 0;
    color: var(--mq-text);
}

.ai-journey-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.journey-tagline {
    text-align: center;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(232,238,247,0.7);
    margin-bottom: 3rem;
}

/* AI Maturity Journey Rail */
.journey-rail {
    position: relative;
    max-width: 700px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.rail-line {
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--mq-teal) 0%,
        rgba(52,195,180,0.8) 50%,
        var(--mq-aqua) 100%
    );
    box-shadow: 0 0 10px rgba(25,179,148,0.4);
    transform: translateY(-50%);
}

.rail-point {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rail-point::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mq-teal), var(--mq-aqua));
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 15px rgba(25,179,148,0.5);
    margin-bottom: 0.75rem;
    animation: railPulse 3s ease-in-out infinite;
}

.point-1 {
    left: 0;
}

.point-1::before {
    animation-delay: 0s;
}

.point-2 {
    left: 50%;
    transform: translate(-50%, -50%);
}

.point-2::before {
    animation-delay: 1s;
}

.point-3 {
    right: 0;
}

.point-3::before {
    animation-delay: 2s;
}

/* Additional points for 5-value layout */
.point-4 {
    left: 25%;
    transform: translate(-50%, -50%);
}

.point-4::before {
    animation-delay: 0.5s;
}

.point-5 {
    left: 75%;
    transform: translate(-50%, -50%);
}

.point-5::before {
    animation-delay: 1.5s;
}

/* Adjust for 5-point rail layout */
.values-tiles ~ .journey-rail .point-1 {
    left: 0;
}

.values-tiles ~ .journey-rail .point-2 {
    left: 25%;
}

.values-tiles ~ .journey-rail .point-3 {
    left: 50%;
}

.values-tiles ~ .journey-rail .point-4 {
    left: 75%;
}

.values-tiles ~ .journey-rail .point-5 {
    left: 100%;
    right: auto;
}

.rail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(232,238,247,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

@keyframes railPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(25,179,148,0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(25,179,148,0.8);
    }
}

/* Journey Tiles Grid */
.journey-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* 5-column layout for values tiles */
.values-tiles {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1400px) {
    .values-tiles {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-tiles .journey-tile:nth-child(4),
    .values-tiles .journey-tile:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .journey-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-tiles .journey-tile:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .values-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-tiles .journey-tile:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .journey-tiles {
        grid-template-columns: 1fr;
    }
    
    .journey-tiles .journey-tile:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .journey-rail {
        padding: 0 1rem;
    }
    
    .rail-label {
        font-size: 0.6875rem;
    }
}

/* Journey Tile */
.journey-tile {
    background: rgba(20,25,30,0.6);
    border: 1px solid rgba(25,179,148,0.15);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.journey-tile:hover,
.journey-tile:focus {
    transform: translateY(-8px);
    border-color: rgba(25,179,148,0.5);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.4),
        0 0 30px rgba(25,179,148,0.3),
        inset 0 0 30px rgba(65,213,255,0.08);
    outline: none;
}

.journey-tile:focus-visible {
    outline: 2px solid var(--mq-aqua);
    outline-offset: 2px;
}

/* Tile Shimmer Effect */
.tile-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(25,179,148,0.6),
        rgba(65,213,255,0.8),
        rgba(101,213,255,0.6),
        transparent
    );
    transition: left 0.6s ease;
}

.journey-tile:hover .tile-shimmer,
.journey-tile:focus .tile-shimmer {
    left: 100%;
}

/* Tile Icon */
.tile-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--mq-teal);
    opacity: 0.8;
    transition: all var(--transition-base);
}

.journey-tile:hover .tile-icon,
.journey-tile:focus .tile-icon {
    color: var(--mq-aqua);
    opacity: 1;
    transform: scale(1.1);
}

/* Tile Typography */
.journey-tile h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.journey-tile p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(232,238,247,0.7);
    margin-bottom: 0;
}

/* ==================== */
/* 18. DIFFERENTIATORS SECTION (About Page) */
/* ==================== */

.differentiators-section {
    background: #F5F7F9;
    padding: var(--spacing-xxl) var(--spacing-md);
}

.differentiators-header {
    text-align: center;
    margin-bottom: 4rem;
}

.differentiators-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0B0D10;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.header-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--mq-teal), var(--mq-aqua));
    margin: 0 auto;
    border-radius: 2px;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentiators-grid .differentiator-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .differentiators-grid .differentiator-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
}

.differentiator-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.differentiator-card:hover,
.differentiator-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(101,213,255,0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.differentiator-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0B0D10;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.card-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--mq-teal), var(--mq-aqua));
    margin-bottom: 1rem;
    border-radius: 1px;
}

.differentiator-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Scroll Animation */
.differentiator-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.differentiator-card.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.differentiators-grid .differentiator-card:nth-child(1) {
    transition-delay: 0.1s;
}

.differentiators-grid .differentiator-card:nth-child(2) {
    transition-delay: 0.2s;
}

.differentiators-grid .differentiator-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .differentiator-card.animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .differentiator-card:hover {
        transform: none;
    }
}

/* ==================== */
/* 19. VALUES SPECTRUM (About Page) */
/* ==================== */

.values-spectrum-section {
    background: #F9FAFB;
    padding: var(--spacing-xxl) var(--spacing-md);
}

.values-spectrum-section h2 {
    margin-bottom: 3rem;
    color: #0B0D10;
}

/* Spectrum Bar */
.spectrum-bar {
    display: flex;
    gap: 0.5rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.spectrum-segment {
    flex: 1;
    padding: 1.25rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Epilogue', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spectrum-segment::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mq-teal), var(--mq-aqua));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spectrum-segment:hover,
.spectrum-segment:focus {
    flex: 1.2;
    background: linear-gradient(135deg, rgba(25,179,148,0.05), rgba(101,213,255,0.05));
    border-color: rgba(25,179,148,0.3);
    box-shadow: 0 4px 16px rgba(101,213,255,0.2);
    outline: none;
}

.spectrum-segment:hover::before,
.spectrum-segment:focus::before {
    opacity: 1;
}

.spectrum-segment.active {
    flex: 1.2;
    background: linear-gradient(135deg, rgba(25,179,148,0.08), rgba(101,213,255,0.08));
    border-color: rgba(25,179,148,0.4);
    box-shadow: 0 4px 16px rgba(101,213,255,0.25);
    color: #0B0D10;
    font-weight: 700;
}

.spectrum-segment.active::before {
    opacity: 1;
}

.spectrum-segment:focus-visible {
    outline: 2px solid var(--mq-aqua);
    outline-offset: 2px;
}

.segment-label {
    position: relative;
    z-index: 1;
}

/* Value Description Panel */
.value-description {
    max-width: 800px;
    margin: 0 auto;
    min-height: 140px;
    position: relative;
}

.description-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.description-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.4s ease-out;
}

.description-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B0D10;
    margin-bottom: 1rem;
    text-align: center;
}

.description-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin: 0;
}

/* Mobile: Vertical Stacked Bars */
@media (max-width: 768px) {
    .spectrum-bar {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .spectrum-segment {
        flex: none;
        width: 100%;
        text-align: left;
    }
    
    .spectrum-segment:hover,
    .spectrum-segment:focus,
    .spectrum-segment.active {
        flex: none;
    }
    
    .value-description {
        margin-top: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .spectrum-segment {
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }
    
    .spectrum-segment:hover,
    .spectrum-segment:focus,
    .spectrum-segment.active {
        flex: 1;
    }
    
    .description-content {
        transition: none;
        animation: none;
    }
}

/* ==================== */
/* 20. CREATIVE AI ELEMENTS */
/* ==================== */

/* Neural network inspired dots */
.ai-dots {
    position: relative;
    display: inline-block;
}

.ai-dots::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 8px;
    height: 8px;
    background: var(--color-build);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Data stream effect */
.data-stream {
    position: relative;
    overflow: hidden;
}

.data-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(27,179,148,0.1),
        transparent
    );
    animation: streamFlow 3s ease-in-out infinite;
}

@keyframes streamFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* AI-themed decorative elements */
.ai-accent {
    position: relative;
    padding-left: 1.5rem;
}

.ai-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        var(--color-build),
        var(--color-enable),
        var(--color-transform),
        var(--color-empower)
    );
    border-radius: 2px;
}

/* Enhanced hover effects for interactive elements */
.interactive-card {
    position: relative;
    transition: all var(--transition-base);
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(27,179,148,0.05),
        rgba(101,213,255,0.05),
        rgba(255,107,123,0.05),
        rgba(156,107,255,0.05)
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.interactive-card:hover::before {
    opacity: 1;
}

/* Glowing effect for CTAs */
.glow-on-hover {
    position: relative;
    z-index: 1;
}

.glow-on-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(27,179,148,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    border-radius: 50px;
}

.glow-on-hover:hover::before {
    opacity: 1;
    width: 120%;
    height: 150%;
}

/* Improved focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-build);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced contrast for readability */
.high-contrast {
    color: var(--color-dark);
    background-color: var(--color-light);
}

/* Section dividers with AI theme */
.section-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-build),
        var(--color-enable),
        var(--color-transform),
        var(--color-empower),
        transparent
    );
    margin: var(--spacing-lg) 0;
}

/* Smooth page transitions */
section {
    scroll-margin-top: var(--header-height);
}

/* Enhanced card hover for pillar cards */
.pillar-card {
    transition: all var(--transition-base);
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.pillar-card:hover::before {
    width: 6px;
}

/* Better table styling for accessibility */
table {
    border-collapse: collapse;
    width: 100%;
}

table th {
    font-weight: 700;
    text-align: left;
}

table td,
table th {
    padding: 1rem;
    vertical-align: top;
}

/* Improved list styling */
ul, ol {
    line-height: 1.8;
}

/* Better spacing for readability */
p + p {
    margin-top: 1rem;
}

h2 + p,
h3 + p,
h4 + p {
    margin-top: 0.5rem;
}

/* Enhanced button group spacing */
.btn-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Improved pre-footer CTA visual hierarchy */
.pre-footer-cta h2 {
    color: var(--color-light);
    font-size: clamp(2rem, 4vw, 2.5rem);
}

/* Better form field focus states */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    border-color: var(--color-build);
    box-shadow: 0 0 0 4px rgba(27, 179, 148, 0.1);
}

/* Enhanced mobile menu transition */
nav {
    transition: all var(--transition-base);
}

/* Improved card link visibility */
.card-link {
    font-size: 1rem;
    font-weight: 600;
}

/* Better visual hierarchy for subtitles */
.subtitle {
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced value chain visual flow */
.value-chain {
    position: relative;
}

.value-chain::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-build),
        var(--color-enable),
        var(--color-transform),
        var(--color-empower)
    );
    z-index: 0;
    opacity: 0.2;
}

.value-chain-item {
    position: relative;
    z-index: 1;
}

/* Service Offerings Layout */
.service-offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.service-offering-item {
    background: var(--color-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-offering-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-build);
    transition: var(--transition-base);
}

.service-offering-item:nth-child(1)::before {
    background: var(--color-build);
}

.service-offering-item:nth-child(2)::before {
    background: var(--color-enable);
}

.service-offering-item:nth-child(3)::before {
    background: var(--color-transform);
}

.service-offering-item:nth-child(4)::before {
    background: var(--color-empower);
}

.service-offering-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-offering-item:hover::before {
    width: 6px;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.service-tagline {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.service-features li {
    font-size: 0.9375rem;
    color: var(--color-gray-dark);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--color-build);
}

.service-offering-item:nth-child(1) .service-features li::before {
    color: var(--color-build);
}

.service-offering-item:nth-child(2) .service-features li::before {
    color: var(--color-enable);
}

.service-offering-item:nth-child(3) .service-features li::before {
    color: var(--color-transform);
}

.service-offering-item:nth-child(4) .service-features li::before {
    color: var(--color-empower);
}

/* ==================== */
/* DNA STRAND SECTION - WHO WE ARE */
/* ==================== */

.dna-strand-section {
    background: #F9FAFB;
    padding: 5rem 2rem;
    position: relative;
}

.dna-strand-container {
    max-width: 800px;
    margin: 0 auto;
}

.dna-strand-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 3rem;
}

.dna-strand-wrapper {
    position: relative;
    padding: 2rem 0;
}

/* Vertical gradient line connecting nodes */
.dna-strand-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #19B394 0%, #65D5FF 100%);
    transform: translateX(-50%);
    z-index: 1;
}

/* Individual DNA Nodes */
.dna-node {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dna-node.visible {
    opacity: 1;
    transform: translateY(0);
}

.dna-node:last-child {
    margin-bottom: 0;
}

/* Default: Content on right, empty space on left */
.dna-node::before {
    content: '';
    grid-column: 1;
}

/* Alternate node: Content on left, empty space on right */
.dna-node:nth-child(3)::before {
    grid-column: 3;
    order: 3;
}

.dna-node:nth-child(3) .dna-node-dot {
    order: 2;
}

.dna-node:nth-child(3) .dna-node-content {
    order: 1;
    grid-column: 1;
    text-align: right;
}

/* DNA Node Dot */
.dna-node-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19B394 0%, #65D5FF 100%);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(25, 179, 148, 0.4);
    animation: dna-pulse 2s ease-in-out infinite;
    grid-column: 2;
    margin-top: 0.5rem;
    justify-self: center;
}

.dna-node-dot-large {
    width: 10px;
    height: 10px;
}

@keyframes dna-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(25, 179, 148, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(25, 179, 148, 0);
    }
}

/* DNA Node Content */
.dna-node-content {
    grid-column: 3;
    text-align: left;
    max-width: 100%;
    padding-right: 1rem;
}

.dna-node-content h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.dna-node-content h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #19B394 0%, #65D5FF 100%);
    transition: width 0.4s ease;
}

.dna-node:hover .dna-node-content h3::after,
.dna-node:focus-within .dna-node-content h3::after {
    width: 100%;
}

.dna-node-content p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #555;
    line-height: 1.7;
    font-weight: 300;
}

/* Philosophy Quote Node (Last Node) */
.dna-node-quote {
    margin-top: 2rem;
}

.dna-philosophy-quote {
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    font-style: italic;
    color: #19B394;
    background: linear-gradient(135deg, #19B394 0%, #65D5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    margin: 0;
    padding: 0;
}

/* Responsive Design - Mobile Timeline */
@media (max-width: 768px) {
    .dna-strand-section {
        padding: 3rem 1.5rem;
    }
    
    .dna-strand-line {
        left: 2rem;
    }
    
    .dna-node {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding-left: 0;
    }
    
    .dna-node::before {
        display: none;
    }
    
    .dna-node:nth-child(3) .dna-node-content {
        order: 2;
        text-align: left;
    }
    
    .dna-node:nth-child(3) .dna-node-dot {
        order: 1;
    }
    
    .dna-node-dot {
        margin-left: 1.75rem;
        margin-top: 0.5rem;
        grid-column: unset;
    }
    
    .dna-node-dot-large {
        margin-left: 1.7rem;
    }
    
    .dna-node-content {
        text-align: left;
        padding-left: 1rem;
        padding-right: 0;
        grid-column: unset;
    }
    
    .dna-node-content h3::after {
        left: 0;
    }
    
    .dna-philosophy-quote {
        text-align: left;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dna-node {
        transition: opacity 0.3s ease;
        transform: none;
    }
    
    .dna-node.visible {
        transform: none;
    }
    
    .dna-node-dot {
        animation: none;
    }
    
    .dna-node-content h3::after {
        transition: none;
    }
}

/* Focus Styles for Accessibility */
.dna-node:focus-within {
    outline: 2px solid #19B394;
    outline-offset: 4px;
    border-radius: 8px;
}

/* ==================== */
/* DIFFERENTIATOR DIAL SECTION */
/* ==================== */

.differentiator-dial-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #F1F4F6 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.dial-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 4rem;
}

/* Dial Container - Horizontal Layout */
.dial-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Nodes Row */
.dial-nodes-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    position: relative;
    width: 100%;
}

/* Center Text - Below Nodes */
.dial-center {
    text-align: center;
    max-width: 400px;
}

.dial-center-text {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    font-weight: 300;
    margin: 0;
}

/* Orbit Circle SVG - Horizontal Line Below */
.dial-orbit {
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    z-index: 0;
    overflow: visible;
}

.dial-orbit circle {
    display: none;
}

.dial-orbit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #19B394 20%, #65D5FF 80%, transparent 100%);
    opacity: 0.3;
}

/* Dial Nodes - Horizontal Layout */
.dial-node {
    position: relative;
    width: 140px;
    height: 140px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: dial-node-fade-in 0.8s ease forwards;
}

@keyframes dial-node-fade-in {
    from {
        opacity: 0;
        scale: 0.8;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

/* Staggered animation delays */
.dial-node-1 {
    animation-delay: 0.2s;
}

.dial-node-2 {
    animation-delay: 0.4s;
}

.dial-node-3 {
    animation-delay: 0.6s;
}

/* Node Content */
.dial-node-emoji {
    font-size: 2rem;
    line-height: 1;
}

.dial-node-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.2;
    padding: 0 0.5rem;
}

/* Hover State */
.dial-node:hover {
    border-color: #19B394;
    box-shadow: 0 0 0 4px rgba(25, 179, 148, 0.2),
                0 8px 24px rgba(0, 0, 0, 0.12);
    scale: 1.1;
}

.dial-node:hover .dial-node-title {
    background: linear-gradient(135deg, #19B394 0%, #65D5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Active State */
.dial-node.active {
    border-color: #19B394;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(25, 179, 148, 0.05) 0%, rgba(101, 213, 255, 0.05) 100%);
    box-shadow: 0 0 0 4px rgba(25, 179, 148, 0.3),
                0 0 20px rgba(25, 179, 148, 0.4),
                0 8px 24px rgba(0, 0, 0, 0.12);
}

.dial-node.active .dial-node-title {
    background: linear-gradient(135deg, #19B394 0%, #65D5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Focus State for Accessibility */
.dial-node:focus-visible {
    outline: 3px solid #19B394;
    outline-offset: 4px;
}

/* Description Area */
.dial-description {
    max-width: 700px;
    margin: 0 auto;
    min-height: 180px;
    position: relative;
}

.dial-description-item {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dial-description-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.dial-description-item h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.dial-description-item p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive - Mobile Stacked Cards */
@media (max-width: 768px) {
    .differentiator-dial-section {
        padding: 3rem 1.5rem;
    }
    
    /* Hide the selector buttons and dial elements on mobile */
    .dial-nodes-row,
    .dial-orbit,
    .dial-node,
    .dial-center {
        display: none !important;
    }
    
    .dial-description {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .dial-description-item {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        text-align: left;
        padding: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .dial-description-item:hover {
        box-shadow: 0 0 0 3px rgba(25, 179, 148, 0.2),
                    0 8px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }
    
    .dial-description-item h3 {
        text-align: left;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dial-node {
        animation: none;
        opacity: 1;
        scale: 1;
    }
    
    .dial-node:hover {
        scale: 1;
    }
    
    .dial-description-item {
        transition: opacity 0.3s ease;
    }
}


/* ========================================= */
/* SPLIT ORBIT-BLUEPRINT HERO               */
/* ========================================= */

/* Hero Section Base */
.hero--orbit-blueprint {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #F9FAFB;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

/* Background gradient halo for dark variant */
.hero--orbit-blueprint::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, 
        rgba(25, 179, 148, 0.06) 0%, 
        rgba(101, 213, 255, 0.04) 40%, 
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Two-column split layout */
.orbit-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

/* Left Column: Content */
.orbit-hero-content {
    padding: 2rem 0;
}

.orbit-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--mq-text-dark);
}

.orbit-hero-text .subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 200;
    color: var(--mq-muted);
    margin-bottom: 1.5rem;
}

.orbit-hero-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--mq-text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* CTAs */
.orbit-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-orbit {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-orbit-primary {
    background: linear-gradient(135deg, var(--mq-teal) 0%, var(--mq-aqua) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(25, 179, 148, 0.2);
}

.btn-orbit-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 179, 148, 0.3);
}

.btn-orbit-primary:focus {
    outline: 2px solid var(--mq-teal);
    outline-offset: 2px;
}

.btn-orbit-ghost {
    background: transparent;
    color: var(--mq-text-dark);
    border: 2px solid var(--mq-line);
    position: relative;
    overflow: hidden;
}

.btn-orbit-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mq-teal) 0%, var(--mq-aqua) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-orbit-ghost:hover {
    border-color: var(--mq-teal);
    transform: translateY(-2px);
}

.btn-orbit-ghost:hover::before {
    transform: scaleX(1);
}

.btn-orbit-ghost:focus {
    outline: 2px solid var(--mq-teal);
    outline-offset: 2px;
}

/* Feature Chips */
.orbit-feature-chips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.orbit-chip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--mq-line);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.orbit-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mq-teal) 0%, var(--mq-aqua) 100%);
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orbit-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--mq-teal);
}

.orbit-chip:hover::before {
    opacity: 1;
}

.orbit-chip:focus-within {
    outline: 2px solid var(--mq-teal);
    outline-offset: 2px;
}

.orbit-chip-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(25, 179, 148, 0.1) 0%, rgba(101, 213, 255, 0.1) 100%);
    border-radius: 8px;
    color: var(--mq-teal);
    font-size: 1.25rem;
}

.orbit-chip-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.orbit-chip-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mq-text-dark);
}

.orbit-chip-text span {
    font-size: 0.9375rem;
    color: var(--mq-muted);
    line-height: 1.4;
}

/* Right Column: Orbit + Blueprint Stage */
.orbit-hero-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Blueprint Layer - Background */
.blueprint-layer {
    position: absolute;
    inset: 0;
    opacity: 0.8;
}

.blueprint-svg {
    width: 100%;
    height: 100%;
}

.bp-grid-rect {
    animation: bp-pan 10s linear infinite;
}

@keyframes bp-pan {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.bp-accent-lines line {
    animation: bp-fade 4s ease-in-out infinite;
}

.bp-accent-lines line:nth-child(2) {
    animation-delay: 1s;
}

.bp-accent-lines line:nth-child(3) {
    animation-delay: 2s;
}

.bp-accent-lines line:nth-child(4) {
    animation-delay: 3s;
}

@keyframes bp-fade {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Orbit Layer - Foreground */
.orbit-visualization {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.orbit-container {
    width: 80%;
    height: 80%;
    max-width: 400px;
    max-height: 400px;
    position: relative;
}

.orbit-svg {
    width: 100%;
    height: 100%;
}

/* Orbit rings rotation */
.orbit-ring {
    animation: orbit-rotate 90s linear infinite;
    transform-origin: center;
}

.orbit-ring.ring-outer {
    animation: orbit-rotate-reverse 120s linear infinite;
}

@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-rotate-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Orbit nodes (scoped to hero orbit stage only) */
.orbit-hero-stage .orbit-node {
    transition: all 0.4s ease;
    cursor: pointer;
}

.orbit-hero-stage .orbit-node:hover {
    transform: scale(1.1);
}

.orbit-hero-stage .orbit-node.active circle:last-child {
    animation: orbit-pulse 2s ease-in-out infinite;
}

@keyframes orbit-pulse {
    0%, 100% {
        opacity: 0.5;
        r: 12;
    }
    50% {
        opacity: 0.8;
        r: 16;
    }
}

/* Pillar-specific color variants */
.hero--orbit-build .btn-orbit-primary {
    background: linear-gradient(135deg, #19B394 0%, #16a085 100%);
    box-shadow: 0 4px 12px rgba(25, 179, 148, 0.2);
}

.hero--orbit-build .orbit-chip-icon {
    background: linear-gradient(135deg, rgba(25, 179, 148, 0.1) 0%, rgba(22, 160, 133, 0.1) 100%);
    color: #19B394;
}

.hero--orbit-enable .btn-orbit-primary {
    background: linear-gradient(135deg, #65d5ff 0%, #3498db 100%);
    box-shadow: 0 4px 12px rgba(101, 213, 255, 0.2);
}

.hero--orbit-enable .orbit-chip-icon {
    background: linear-gradient(135deg, rgba(101, 213, 255, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    color: #65d5ff;
}

.hero--orbit-transform .btn-orbit-primary {
    background: linear-gradient(135deg, #ff6b7b 0%, #e74c3c 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 123, 0.2);
}

.hero--orbit-transform .orbit-chip-icon {
    background: linear-gradient(135deg, rgba(255, 107, 123, 0.1) 0%, rgba(231, 76, 60, 0.1) 100%);
    color: #ff6b7b;
}

.hero--orbit-empower .btn-orbit-primary {
    background: linear-gradient(135deg, #9c6bff 0%, #8e44ad 100%);
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.2);
}

.hero--orbit-empower .orbit-chip-icon {
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.1) 0%, rgba(142, 68, 173, 0.1) 100%);
    color: #9c6bff;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .orbit-ring,
    .orbit-ring.ring-outer {
        animation: none;
    }
    
    .bp-grid-rect {
        animation: none;
    }
    
    .bp-accent-lines line {
        animation: none;
        opacity: 0.5;
    }
    
    .orbit-node.active circle:last-child {
        animation: none;
    }
    
    .orbit-chip:hover,
    .btn-orbit:hover,
    .btn-orbit-ghost:hover {
        transform: none;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .orbit-hero-grid {
        gap: 3rem;
    }
    
    .orbit-hero-text h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .orbit-hero-stage {
        max-width: 500px;
    }
}

/* Mobile: Stack layout */
@media (max-width: 768px) {
    .hero--orbit-blueprint {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .orbit-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .orbit-hero-stage {
        max-width: 100%;
        max-height: 400px;
        order: -1;
    }
    
    .orbit-hero-cta {
        flex-direction: column;
    }
    
    .btn-orbit {
        width: 100%;
        justify-content: center;
    }
    
    .orbit-container {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 640px) {
    .orbit-hero-text h1 {
        font-size: 2rem;
    }
    
    .orbit-hero-text .subtitle {
        font-size: 1.125rem;
    }
    
    .orbit-hero-lead {
        font-size: 1rem;
    }
    
    .orbit-feature-chips {
        gap: 0.75rem;
    }
    
    .orbit-chip {
        padding: 0.75rem;
    }
    
    .orbit-chip-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.125rem;
    }
    
    .orbit-chip-text strong {
        font-size: 0.9375rem;
    }
    
    .orbit-chip-text span {
        font-size: 0.875rem;
    }
}

/* ==================== */
/* TEAM PHOTOS GRID */
/* ==================== */

.team-photos-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.photo-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: #1bb394 #E5E7EB;
    scroll-behavior: smooth;
}

.photo-row::-webkit-scrollbar {
    height: 6px;
}

.photo-row::-webkit-scrollbar-track {
    background: #E5E7EB;
    border-radius: 3px;
}

.photo-row::-webkit-scrollbar-thumb {
    background: #1bb394;
    border-radius: 3px;
}

.photo-row::-webkit-scrollbar-thumb:hover {
    background: #17a085;
}

.photo-item {
    flex: 0 0 200px;
    height: 150px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f9fafb;
}

.photo-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
    pointer-events: none;
    user-select: none;
    filter: grayscale(100%);
}

.photo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 70%,
        rgba(27, 179, 148, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.photo-item:hover::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-item {
        flex: 0 0 150px;
        height: 120px;
    }
    
    .team-photos-grid {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .photo-item {
        flex: 0 0 120px;
        height: 90px;
    }
    
    .photo-row {
        gap: 0.75rem;
    }
    
    .team-photos-grid {
        gap: 0.75rem;
    }
}

/* ==================== */
/* PRESENTATION DECK STYLES */
/* ==================== */

/* Body in presentation mode */
body.presentation-mode {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Presentation Container */
.presentation-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
}

.slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 5;
}

/* Slide Content Container */
.slide-content {
    max-width: 1200px;
    width: 100%;
    animation: slideContentFadeIn 0.8s ease-out 0.3s both;
}

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

/* Title Slide Specific - Hero Style */
.slide-title {
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(27, 179, 148, 0.08) 0%, rgba(27, 179, 148, 0.03) 40%, transparent 70%);
}

.slide[data-slide="1"] {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    overflow: hidden;
}

.slide[data-slide="1"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(27, 179, 148, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

.title-logo-container {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.title-logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 179, 148, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.presentation-logo {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(27, 179, 148, 0.15));
    animation: logoFadeIn 1.2s ease-out;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    60% {
        transform: scale(1.02) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.slide-title .slide-heading {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, #222222 0%, #1bb394 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.slide-title .slide-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: #1bb394;
    margin-bottom: 1.5rem;
}

.slide-title .slide-tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    color: #666666;
    line-height: 1.8;
}

/* Typography in Slides */
.slide-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #222222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 200;
    color: #666666;
    margin-bottom: 1.5rem;
}

.slide-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: #444444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666666;
    text-align: center;
    margin-top: 2rem;
}

/* Challenge Grid (Slide 2) */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.challenge-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1bb394;
}

.challenge-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #222222;
}

.challenge-card p {
    font-size: 1rem;
    font-weight: 300;
    color: #666666;
}

/* Slide 3: Orbit Overview - Enhanced Design */
.slide-orbit-overview {
    background: radial-gradient(ellipse at center, rgba(27, 179, 148, 0.03) 0%, #ffffff 60%);
}

.slide-orbit-content {
    text-align: center;
}

.orbit-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #1bb394;
    margin-bottom: 2rem;
}

.orbit-description {
    max-width: 700px;
    margin: 2rem auto 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: #555555;
}

/* Pillars Orbit Visual - Professional Design */
.pillars-orbit-visual {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 520px;
    margin: 2.5rem auto;
}

/* Central Core with Enhanced Styling */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(27, 179, 148, 0.2);
    z-index: 10;
    border: 3px solid rgba(27, 179, 148, 0.1);
}

.orbit-center-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 179, 148, 0.15) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

.orbit-center-logo {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Orbit Rings with Animation */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: orbitRotate 30s linear infinite;
    opacity: 0.8;
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Orbit Pillars - Enhanced Nodes - Clickable Links */
.orbit-pillar {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInNode 0.8s ease-out backwards;
    z-index: 5;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeInNode {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.orbit-pillar-build {
    animation-delay: 0.2s;
}

.orbit-pillar-enable {
    animation-delay: 0.4s;
}

.orbit-pillar-transform {
    animation-delay: 0.6s;
}

.orbit-pillar-empower {
    animation-delay: 0.8s;
}

/* Pillar Nodes with Inner Circles and Pulsing Border */
.pillar-node {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transform-origin: center center;
}

.pillar-node::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 3px solid currentColor;
    opacity: 0.5;
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.node-inner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.orbit-pillar:hover .pillar-node {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.orbit-pillar:hover .pillar-node::before {
    animation-play-state: paused;
    opacity: 0.9;
    transform: scale(1);
}

/* Build Pillar - Green - Top of Orbit */
.orbit-pillar-build {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
}

.pillar-node-build {
    background: linear-gradient(135deg, #1bb394 0%, #16a085 100%);
    color: #1bb394;
}

.orbit-pillar-build:hover .pillar-node {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(27, 179, 148, 0.4);
}

.pillar-label-build {
    color: #1bb394;
}

/* Enable Pillar - Blue - Right of Orbit */
.orbit-pillar-enable {
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
}

.pillar-node-enable {
    background: linear-gradient(135deg, #65d5ff 0%, #3498db 100%);
    color: #65d5ff;
}

.orbit-pillar-enable:hover .pillar-node {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(101, 213, 255, 0.4);
}

.pillar-label-enable {
    color: #65d5ff;
}

/* Transform Pillar - Red - Bottom of Orbit (On Orbit Line) */
.orbit-pillar-transform {
    top: 95%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.pillar-node-transform {
    background: linear-gradient(135deg, #ff6b7b 0%, #e74c3c 100%);
    color: #ff6b7b;
}

.orbit-pillar-transform:hover .pillar-node {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(255, 107, 123, 0.4);
}

.pillar-label-transform {
    color: #ff6b7b;
}

/* Empower Pillar - Purple - Left of Orbit */
.orbit-pillar-empower {
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
}

.pillar-node-empower {
    background: linear-gradient(135deg, #9c6bff 0%, #8e44ad 100%);
    color: #9c6bff;
}

.orbit-pillar-empower:hover .pillar-node {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(156, 107, 255, 0.4);
}

.pillar-label-empower {
    color: #9c6bff;
}

/* Pillar Labels - Enhanced Typography */
.pillar-label {
    font-size: 1.125rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.orbit-pillar:hover .pillar-label {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Mini Orbit - Top-Left of Slide on Pillar Slides
   ============================================ */
.mini-orbit {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 175px;
    height: 175px;
    z-index: 20;
    pointer-events: none;
    animation: miniOrbitFadeIn 0.8s ease-out 0.3s both;
}

@keyframes miniOrbitFadeIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mini Orbit Center */
.mini-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(27, 179, 148, 0.15);
    z-index: 10;
    border: 1.5px solid rgba(27, 179, 148, 0.1);
}

.mini-orbit-logo {
    width: 28px;
    height: auto;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

/* Mini Orbit Ring SVG */
.mini-orbit-ring-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: miniOrbitSpin 25s linear infinite;
    opacity: 0.6;
}

@keyframes miniOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mini Orbit Nodes (generic) */
.mini-orbit-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 5;
    transition: all 0.3s ease;
}

.mini-node-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mini-node-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

/* Inactive nodes are dimmed */
.mini-orbit-node:not(.active) .mini-node-dot {
    opacity: 0.35;
    transform: scale(0.8);
}

.mini-orbit-node:not(.active) .mini-node-label {
    opacity: 0.3;
}

/* Active node glows with pulse */
.mini-orbit-node.active .mini-node-dot {
    opacity: 1;
    transform: scale(1);
    animation: miniNodePulse 2s ease-in-out infinite;
}

.mini-orbit-node.active .mini-node-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.6;
    animation: miniNodeRingPulse 2s ease-in-out infinite;
}

.mini-orbit-node.active .mini-node-label {
    opacity: 1;
    font-weight: 700;
}

@keyframes miniNodePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes miniNodeRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.25); opacity: 0.3; }
}

/* Node Positions: Build=top, Enable=right, Transform=bottom, Empower=left */
.mini-node-build {
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.mini-node-enable {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.mini-node-transform {
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.mini-node-empower {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Node Colors */
.mini-node-build .mini-node-dot {
    background: linear-gradient(135deg, #1bb394 0%, #16a085 100%);
    color: #1bb394;
}

.mini-node-enable .mini-node-dot {
    background: linear-gradient(135deg, #65d5ff 0%, #3498db 100%);
    color: #65d5ff;
}

.mini-node-transform .mini-node-dot {
    background: linear-gradient(135deg, #ff6b7b 0%, #e74c3c 100%);
    color: #ff6b7b;
}

.mini-node-empower .mini-node-dot {
    background: linear-gradient(135deg, #9c6bff 0%, #8e44ad 100%);
    color: #9c6bff;
}

/* Label Colors */
.mini-node-build .mini-node-label { color: #1bb394; }
.mini-node-enable .mini-node-label { color: #65d5ff; }
.mini-node-transform .mini-node-label { color: #ff6b7b; }
.mini-node-empower .mini-node-label { color: #9c6bff; }

/* Responsive: hide mini orbit on small screens */
@media (max-width: 768px) {
    .mini-orbit {
        display: none;
    }
}

/* Pillar-Specific Slide Themes - Professional Design */
.slide-build {
    background: radial-gradient(ellipse at top, rgba(27, 179, 148, 0.08) 0%, rgba(27, 179, 148, 0.03) 40%, #ffffff 100%);
}

.slide-build::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #1bb394 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.slide-enable {
    background: radial-gradient(ellipse at top, rgba(101, 213, 255, 0.08) 0%, rgba(101, 213, 255, 0.03) 40%, #ffffff 100%);
}

.slide-enable::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #65d5ff 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.slide-transform {
    background: radial-gradient(ellipse at top, rgba(255, 107, 123, 0.08) 0%, rgba(255, 107, 123, 0.03) 40%, #ffffff 100%);
}

.slide-transform::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ff6b7b 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.slide-empower {
    background: radial-gradient(ellipse at top, rgba(156, 107, 255, 0.08) 0%, rgba(156, 107, 255, 0.03) 40%, #ffffff 100%);
}

.slide-empower::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #9c6bff 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Pillar Content Layout */
.slide-pillar-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Pillar Logo Header - Large Centered */
.pillar-logo-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillar-logo-main {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
    animation: pillarLogoAppear 0.8s ease-out;
}

@keyframes pillarLogoAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Pillar Heading & Tagline */
.pillar-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.slide-build .pillar-heading {
    color: #1bb394;
}

.slide-enable .pillar-heading {
    color: #65d5ff;
}

.slide-transform .pillar-heading {
    color: #ff6b7b;
}

.slide-empower .pillar-heading {
    color: #9c6bff;
}

.pillar-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    font-weight: 300;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Grid - Professional Cards */
.pillar-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.slide-build .benefit-card:hover {
    border-color: rgba(27, 179, 148, 0.3);
    box-shadow: 0 8px 32px rgba(27, 179, 148, 0.2);
}

.slide-enable .benefit-card:hover {
    border-color: rgba(101, 213, 255, 0.3);
    box-shadow: 0 8px 32px rgba(101, 213, 255, 0.2);
}

.slide-transform .benefit-card:hover {
    border-color: rgba(255, 107, 123, 0.3);
    box-shadow: 0 8px 32px rgba(255, 107, 123, 0.2);
}

.slide-empower .benefit-card:hover {
    border-color: rgba(156, 107, 255, 0.3);
    box-shadow: 0 8px 32px rgba(156, 107, 255, 0.2);
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.slide-build .benefit-icon-wrapper {
    background: linear-gradient(135deg, rgba(27, 179, 148, 0.15) 0%, rgba(27, 179, 148, 0.05) 100%);
}

.slide-enable .benefit-icon-wrapper {
    background: linear-gradient(135deg, rgba(101, 213, 255, 0.15) 0%, rgba(101, 213, 255, 0.05) 100%);
}

.slide-transform .benefit-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 123, 0.15) 0%, rgba(255, 107, 123, 0.05) 100%);
}

.slide-empower .benefit-icon-wrapper {
    background: linear-gradient(135deg, rgba(156, 107, 255, 0.15) 0%, rgba(156, 107, 255, 0.05) 100%);
}

.benefit-icon {
    font-size: 2rem;
}

.slide-build .benefit-icon {
    color: #1bb394;
}

.slide-enable .benefit-icon {
    color: #65d5ff;
}

.slide-transform .benefit-icon {
    color: #ff6b7b;
}

.slide-empower .benefit-icon {
    color: #9c6bff;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #222222;
}

.benefit-card p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Old styles kept for compatibility */
.pillar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pillar-logo {
    width: 80px;
    height: auto;
}

.pillar-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222222;
}

.benefit-item p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666666;
    margin: 0;
}

/* Why Grid (Slide 8) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1bb394;
}

.why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #222222;
}

.why-card p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666666;
    margin: 0;
}

/* Audience Grid (Slide 9) */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.audience-icon {
    margin-bottom: 1.5rem;
    color: #1bb394;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222222;
}

.audience-card p {
    font-size: 1rem;
    font-weight: 300;
    color: #666666;
    margin: 0;
}

/* CTA Slide (Slide 10) - Hero Style */
.slide-cta {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.slide-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(27, 179, 148, 0.08) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ctaGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-30px, 30px) scale(1.1);
        opacity: 0.9;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.slide-cta .slide-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #222222 0%, #1bb394 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.slide-cta .slide-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #666666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 179, 148, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(27, 179, 148, 0.15);
    border-color: rgba(27, 179, 148, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    color: #1bb394;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 179, 148, 0.1) 0%, rgba(27, 179, 148, 0.05) 100%);
    border-radius: 50%;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #222222;
}

.contact-item p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666666;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.slide-cta .btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 16px rgba(27, 179, 148, 0.2);
    transition: all 0.3s ease;
}

.slide-cta .btn-primary {
    background: linear-gradient(135deg, #1bb394 0%, #16a085 100%);
    transform: scale(1.05);
}

.slide-cta .btn-primary:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(27, 179, 148, 0.3);
}

.slide-cta .btn-secondary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cronos-badge {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(27, 179, 148, 0.1);
}

.cronos-badge p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

/* Navigation Controls */
.presentation-nav {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.presentation-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #1bb394;
    color: #1bb394;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: #1bb394;
    color: white;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #cccccc;
    color: #cccccc;
}

.nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #cccccc;
    transform: scale(1);
}

/* Navigation Color Themes Based on Slide */
/* Build Theme - Green */
.presentation-nav.nav-build .nav-btn {
    border-color: #1bb394;
    color: #1bb394;
}

.presentation-nav.nav-build .nav-btn:hover {
    background: #1bb394;
    color: white;
}

/* Enable Theme - Blue */
.presentation-nav.nav-enable .nav-btn {
    border-color: #65d5ff;
    color: #65d5ff;
}

.presentation-nav.nav-enable .nav-btn:hover {
    background: #65d5ff;
    color: white;
}

/* Transform Theme - Red */
.presentation-nav.nav-transform .nav-btn {
    border-color: #ff6b7b;
    color: #ff6b7b;
}

.presentation-nav.nav-transform .nav-btn:hover {
    background: #ff6b7b;
    color: white;
}

/* Empower Theme - Purple */
.presentation-nav.nav-empower .nav-btn {
    border-color: #9c6bff;
    color: #9c6bff;
}

.presentation-nav.nav-empower .nav-btn:hover {
    background: #9c6bff;
    color: white;
}

/* Progress Bar */
.presentation-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1bb394 0%, #65d5ff 50%, #ff6b7b 75%, #9c6bff 100%);
    width: 10%;
    transition: width 0.3s ease, background 0.3s ease;
}

/* Progress Bar Color Themes */
.presentation-progress.nav-build .progress-bar {
    background: linear-gradient(90deg, #1bb394 0%, #16a085 100%);
}

.presentation-progress.nav-enable .progress-bar {
    background: linear-gradient(90deg, #65d5ff 0%, #3498db 100%);
}

.presentation-progress.nav-transform .progress-bar {
    background: linear-gradient(90deg, #ff6b7b 0%, #e74c3c 100%);
}

.presentation-progress.nav-empower .progress-bar {
    background: linear-gradient(90deg, #9c6bff 0%, #8e44ad 100%);
}

/* Slide Indicator */
.slide-indicator {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 700;
    color: #222222;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.slide-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Slide Indicator Color Themes */
.slide-indicator.nav-build {
    border: 2px solid rgba(27, 179, 148, 0.3);
    color: #1bb394;
}

.slide-indicator.nav-enable {
    border: 2px solid rgba(101, 213, 255, 0.3);
    color: #65d5ff;
}

.slide-indicator.nav-transform {
    border: 2px solid rgba(255, 107, 123, 0.3);
    color: #ff6b7b;
}

.slide-indicator.nav-empower {
    border: 2px solid rgba(156, 107, 255, 0.3);
    color: #9c6bff;
}

/* Exit Button */
.exit-presentation {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e0e0e0;
    color: #666666;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    text-decoration: none;
    opacity: 1;
}

.exit-presentation.hidden {
    opacity: 0;
    pointer-events: none;
}

.exit-presentation:hover {
    background: #ff6b7b;
    color: white;
    border-color: #ff6b7b;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide {
        padding: 3rem 2rem;
    }
    
    .slide-heading {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .pillars-orbit-visual {
        max-width: 520px;
        height: 460px;
    }
    
    .orbit-center {
        width: 110px;
        height: 110px;
    }
    
    .orbit-center-logo {
        width: 70px;
    }
    
    .orbit-center-glow {
        width: 130px;
        height: 130px;
    }
    
    .pillar-node {
        width: 60px;
        height: 60px;
    }
    
    .node-inner {
        width: 40px;
        height: 40px;
    }
    
    .pillar-label {
        font-size: 1rem;
    }
    
    .pillar-benefits,
    .why-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-logo-main {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 2rem 1.5rem;
    }
    
    .presentation-logo {
        max-width: 300px;
    }
    
    .title-logo-container::after {
        width: 350px;
        height: 350px;
    }
    
    .slide-title .slide-heading {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .slide-title .slide-subtitle {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    .slide-cta .slide-heading {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .pillar-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pillar-logo {
        width: 60px;
    }
    
    .pillar-logo-main {
        width: 120px;
    }
    
    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .slide-cta .btn {
        padding: 0.875rem 2rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .presentation-nav {
        bottom: 1rem;
    }
    
    .slide-indicator {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .exit-presentation {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .slide {
        padding: 1.5rem 1rem;
    }
    
    .slide-heading {
        font-size: 1.75rem;
    }
    
    .slide-subtitle {
        font-size: 1.125rem;
    }
    
    .presentation-logo {
        max-width: 250px;
    }
    
    .title-logo-container::after {
        width: 280px;
        height: 280px;
    }
    
    .slide-title .slide-heading {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .slide-title .slide-subtitle {
        font-size: clamp(1.125rem, 3vw, 1.5rem);
    }
    
    .slide-title .slide-tagline {
        font-size: 1rem;
    }
    
    .slide-cta .slide-heading {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .slide-cta .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .pillar-logo-main {
        width: 100px;
    }
    
    .pillar-heading {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .pillar-tagline {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.0625rem;
    }
    
    .benefit-card p {
        font-size: 0.875rem;
    }
    
    .pillars-orbit-visual {
        max-width: 380px;
        height: 380px;
    }
    
    .orbit-center {
        width: 90px;
        height: 90px;
    }
    
    .orbit-center-logo {
        width: 55px;
    }
    
    .orbit-center-glow {
        width: 105px;
        height: 105px;
    }
    
    .pillar-node {
        width: 50px;
        height: 50px;
    }
    
    .node-inner {
        width: 32px;
        height: 32px;
    }
    
    .pillar-label {
        font-size: 0.875rem;
    }
    
    .orbit-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .orbit-description {
        font-size: 0.9375rem;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Print Styles for PDF Export */
@media print {
    body.presentation-mode {
        overflow: visible;
    }
    
    .presentation-container {
        height: auto;
    }
    
    .slide {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        page-break-after: always;
        page-break-inside: avoid;
        height: 100vh;
    }
    
    .presentation-nav,
    .presentation-progress,
    .slide-indicator,
    .exit-presentation {
        display: none !important;
    }
    
    .slide-content {
        animation: none;
    }
}
