/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #254E70;
    --primary-dark: #1a3b56;
    --secondary-color: #8BBCE4;
    --tertiary-color: #43C59E;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --background: #ffffff;
    --background-light: #f8fafc;
    --background-dark: #0f172a;
    --border-color: #e2e8f0;
    --gradient-start: #254E70;
    --gradient-end: #8BBCE4;
    --success-color: #43C59E;
    --warning-color: #f59e0b;
    --accent-blue: #8BBCE4;
    
    /* Footer Dark Theme Colors */
    --footer-text: #94a3b8;
    --footer-text-muted: #64748b;
    --footer-border: #334155;
    --footer-heart: #e11d48;
    
    /* Additional Theme Colors */
    --cta-gradient-end: #1e293b;
    --cta-text-light: #cbd5e1;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 4rem;
    
    /* Spacing System */
    --spacing-xs: 0.25rem;    /* 4px */
    --spacing-sm: 0.5rem;     /* 8px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 2rem;       /* 32px */
    --spacing-2xl: 3rem;      /* 48px */
    --spacing-3xl: 4rem;      /* 64px */
    --spacing-4xl: 6rem;      /* 96px */
    
    /* Section Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;
    
    /* Container Spacing */
    --container-padding: 1.5rem;
    --container-padding-sm: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Carousel System Variables */
    --carousel-item-width: 120px;
    --carousel-item-gap: 3rem;
    --carousel-items-per-set: 5;
    --carousel-animation-duration: 25s;
    --carousel-animation-duration-mobile: 18s;
    
    /* Avatar System Variables */
    --avatar-size-sm: 28px;
    --avatar-size-md: 40px;
    --avatar-size-lg: 56px;
    
    /* Typography Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.6;
    --line-height-loose: 1.8;
    
    /* Border Radius System */
    --border-radius-sm: 0.25rem;    /* 4px */
    --border-radius-md: 0.5rem;     /* 8px */
    --border-radius-lg: 0.75rem;    /* 12px */
    --border-radius-xl: 1rem;       /* 16px */
    --border-radius-full: 50%;      /* circular */
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Mobile-first responsive containers */
@media (max-width: 640px) {
    .container {
        padding: 0 var(--container-padding-sm);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-6xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
    font-family: var(--font-family);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-primary.large, .btn-secondary.large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    height: 70px;
}

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

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    display: block;
    transition: opacity 0.2s ease;
}

.nav-logo .logo-image:hover {
    opacity: 0.8;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.status-indicator:hover {
    color: var(--success-color);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.status-text {
    font-weight: 500;
}

.nav-signin {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.nav-signin:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 140px 0 var(--section-padding-sm);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-content {
    text-align: left;
}

.hero-bottom {
    text-align: center;
    margin-top: 3rem;
}

.hero-title {
    font-family: var(--font-family);
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-normal);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: var(--font-family);
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-actions {
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    font-family: var(--font-family);
}

.stat-label {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-align: center;
}

/* Demo Interface */
.demo-interface {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-interface:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.demo-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.demo-title {
    font-weight: 600;
    color: var(--text-primary);
}

.demo-chat {
    space-y: 1rem;
    /* Fixed height to prevent layout shifts */
    min-height: 280px;
    position: relative;
}

.chat-message {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
}

.chat-message.user {
    background: var(--primary-color);
    color: white;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* User Profile Components - Consistent with Design System */
.user-profile {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.user-avatar {
    width: var(--avatar-size-sm);
    height: var(--avatar-size-sm);
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.user-avatar svg {
    color: white;
    opacity: 0.9;
}

.user-name {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.9);
}

.message-text {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

.chat-message.ai {
    background: var(--background-light);
    margin-right: 2rem;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

.demo-input {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.send-button {
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 44px;
}

.send-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.beye-agent {
    width: var(--avatar-size-sm);
    height: var(--avatar-size-sm);
    border-radius: var(--border-radius-sm);
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.ai-response-with-agent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* AI Response Components */
.ai-response {
    margin-top: 1rem;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.response-text {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-family: var(--font-family);
}

.chart-summary {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-family);
}

.metric .label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: var(--font-family);
}

.line-chart {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.line-chart svg {
    width: 100%;
    height: auto;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
}

.section-header p {
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-family);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* AI Readiness Workflow */
.ai-readiness-workflow {
    padding: var(--section-padding-sm) 0 var(--section-padding);
    background: var(--background);
    font-family: var(--font-family);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-step {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.workflow-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.workflow-step.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.step-content {
    margin-bottom: 1.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
}

.step-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
    opacity: 1;
    transform: scale(1.1);
}

.workflow-step.active .step-icon {
    opacity: 1;
    transform: scale(1.1);
}

.step-systems,
.step-features,
.step-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.system-tag,
.feature-tag,
.benefit-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.system-tag {
    background: rgba(37, 78, 112, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(37, 78, 112, 0.2);
}

.feature-tag {
    background: rgba(139, 188, 228, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(139, 188, 228, 0.3);
}

.benefit-tag {
    background: rgba(67, 197, 158, 0.1);
    color: var(--tertiary-color);
    border: 1px solid rgba(67, 197, 158, 0.3);
}

.workflow-step:hover .system-tag,
.workflow-step:hover .feature-tag,
.workflow-step:hover .benefit-tag {
    transform: scale(1.05);
}

/* Data Sources Carousel */
.data-sources-section {
    padding: var(--section-padding-sm) 0;
    background: var(--background-light);
    overflow: hidden;
}

.data-sources-section .section-header {
    margin-bottom: 3rem;
}

.data-sources-section .section-header h3 {
    font-family: var(--font-family);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.data-sources-section .section-header p {
    font-family: var(--font-family);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    /* Ensure smooth infinite scrolling */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: var(--carousel-item-gap);
    animation: scrollInfinite var(--carousel-animation-duration) linear infinite;
    width: max-content;
    /* Perfect alignment for seamless loop - 15 items total (3 sets of 5) */
    will-change: transform;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: var(--carousel-item-width);
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    pointer-events: none;
}

.data-source-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
}

.logo-label {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}

.carousel-note {
    text-align: center;
    padding: 1rem;
}

.carousel-note p {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin: 0;
}

.carousel-note strong {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly one set: 5 items + 4 gaps between them */
        transform: translateX(calc(-1 * (var(--carousel-items-per-set) * var(--carousel-item-width) + 4 * var(--carousel-item-gap))));
    }
}

/* Continuous animation - no pause on hover */

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --carousel-item-width: 100px;
        --carousel-item-gap: 2rem;
    }
    
    .carousel-track {
        animation-duration: var(--carousel-animation-duration-mobile);
    }
    
    .logo-item {
        min-width: var(--carousel-item-width);
        padding: 1rem 0.75rem;
    }
    
    .data-source-logo {
        width: 40px;
        height: 40px;
    }
    
    .data-sources-section .section-header h3 {
        font-size: var(--font-size-xl);
    }
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--background-light);
}

.problem-section .section-header h2 {
    color: var(--warning-color);
    margin-bottom: 2rem;
}

.problem-section .section-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
}

/* Solution Section */
.solution-section {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.prop-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prop-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* ROI Metrics Section */
.roi-metrics {
    padding: var(--section-padding) 0;
    background: var(--background-light);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.metric-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.metric-number {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-family);
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--background-light);
}

.live-indicator {
    color: var(--success-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.dashboard-content {
    padding: 1.5rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 1.5rem;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--accent-blue));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
}

.insights-panel {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 0.5rem;
}

.insight-icon {
    font-size: 1.25rem;
}

/* Trust Section */
.trust-section {
    padding: var(--section-padding) 0;
    background: white;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-badges h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.trust-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.trust-link:hover {
    text-decoration: underline;
}

.testimonial-highlight {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-highlight blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-highlight cite {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Dataverse Diagram */
.dataverse-diagram {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 120px;
}

.data-node, .center-node {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.data-node {
    background: var(--background-light);
    border: 1px solid var(--border-color);
}

.center-node {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    z-index: 2;
}

.data-node:nth-child(1) { top: 0; left: 0; }
.data-node:nth-child(2) { top: 0; right: 0; }
.data-node:nth-child(3) { bottom: 0; left: 0; }

/* Collaboration Preview */
.collaboration-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
}

.collab-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* AI Brain */
.ai-brain {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 80px;
}

.brain-node {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
}

.brain-node.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--background-dark) 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-note {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand .footer-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: var(--line-height-relaxed);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 78, 112, 0.3);
}

.social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

.footer-love {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: #94a3b8;
    margin-top: 0.5rem !important;
    text-align: center;
}

.heart-icon {
    color: #e11d48;
    display: inline-block;
    animation: heartbeat 2s ease-in-out infinite;
    font-size: 1rem;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Company/Team Page Styles */
.leadership-section {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.team-member {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.member-photo {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--background-light), var(--border-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
}

.member-info h3 {
    font-family: var(--font-family);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.member-title {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    min-height: 60px;
    align-content: start;
}

.credential {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--background-light);
    color: var(--text-secondary);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    min-width: var(--carousel-item-width);
    height: var(--avatar-size-md);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-bio {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
    text-align: left;
    min-height: 120px;
}

/* Member Social Icons */
.member-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background: var(--background-light);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
}

.linkedin-link:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Location Section */
.location-section {
    padding: var(--section-padding) 0;
    background: var(--background-light);
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-info h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.location-description {
    font-family: var(--font-family);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-2xl);
}

.address-card {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.address-icon {
    flex-shrink: 0;
}

.address-details {
    text-align: left;
}

.address-line {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin: 0;
    line-height: var(--line-height-normal);
}

/* Strategic Advisors Section */
.advisors-section {
    padding: var(--section-padding) 0;
    background: var(--background-light);
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advisor-member {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.advisor-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.advisor-member .photo-placeholder {
    width: 80px;
    height: 80px;
    border: 2px solid var(--secondary-color);
}

.advisor-member .member-info h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
}

.advisor-member .member-title {
    color: var(--secondary-color);
    font-size: var(--font-size-sm);
}

.advisor-member .member-bio {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.advisor-member .linkedin-link {
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
}

/* Utility Classes for Performance & Consistency */
.hidden {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Trademark Symbol Styling */
sup {
    font-size: 0.7em;
    vertical-align: super;
    line-height: 0;
    color: var(--text-secondary);
    font-weight: var(--font-weight-normal);
}

/* Company Page Specific Styles */
.company-hero-content {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.company-hero-stats {
    justify-content: center;
}

/* Active nav link styling */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-logo .logo-image {
        height: 36px;
        max-width: 130px;
    }
    
    .nav-signin {
        display: none;
    }
    
    .footer-brand .footer-logo {
        height: 36px;
        max-width: 130px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .trust-badges {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .status-indicator .status-text {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .props-grid,
    .faq-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    h1 { font-size: var(--font-size-4xl); }
    h2 { font-size: var(--font-size-3xl); }
    
    .container {
        padding: 0 1rem;
    }
} 