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

:root {
    /* OpenText-inspired Color Palette */
    --primary-blue: #0066cc;
    --primary-dark: #004499;
    --primary-light: #3385d6;
    --secondary-blue: #1e3a8a;
    --accent-purple: #7c3aed;
    --accent-teal: #0891b2;
    
    /* Neutral Colors */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
}

body {
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

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

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

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky-top {
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.brand-accent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: -0.25rem;
}

/* Navigation */
.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-xl);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

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

/* Dropdown Toggle */
.dropdown-toggle::after {
    content: '▼';
    font-size: 0.625rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.mega-menu-container {
    padding: var(--spacing-xl);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.mega-menu-section h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-section li {
    margin-bottom: 0.5rem;
}

.mega-menu-section a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.mega-menu-section a:hover {
    color: var(--primary-blue);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Section Eyebrow */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.eyebrow-icon {
    font-size: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
/* Hero Banner Section */
.hero-banner {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%230066cc" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 102, 204, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: var(--spacing-xl);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.hero-eyebrow:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.eyebrow-icon {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.eyebrow-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.eyebrow-link:hover {
    color: var(--primary-dark);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
}

.hero-proof {
    border-top: 1px solid var(--gray-200);
    padding-top: var(--spacing-xl);
}

.proof-stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat-group {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-family-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-container {
    position: relative;
}

.platform-preview {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.platform-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem;
}

.preview-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab.active {
    background: var(--primary-blue);
    color: white;
}

.preview-content {
    padding: 1.5rem;
}

.dashboard-widget {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.widget-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #dcfce7;
    color: #166534;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.widget-metrics {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.metric {
    display: flex;
    flex-direction: column;
}

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

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.widget-chart {
    height: 80px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    gap: 4px;
    align-items: end;
    height: 100%;
}

.bar {
    width: 12px;
    background: linear-gradient(to top, var(--primary-blue), var(--primary-light));
    border-radius: 2px 2px 0 0;
    animation: barGrow 1s ease-out;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--bar-height, 50%); }
}

/* Solutions Showcase */
.solutions-showcase {
    padding: 5rem 0;
    background: white;
}

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

.solution-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.featured-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02), rgba(124, 58, 237, 0.02));
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

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

.card-badge {
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.solution-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.card-features {
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.feature-icon {
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.card-metrics {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.metric-badge {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: var(--primary-dark);
}

/* Platform Overview */
.platform-overview {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.platform-info {
    animation: fadeInLeft 0.8s ease-out;
}

.platform-highlights {
    margin: var(--spacing-xl) 0;
}

.highlight-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

.platform-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* Architecture Diagram */
.platform-visual {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.architecture-diagram {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.diagram-layer {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
}

.diagram-layer:last-child {
    margin-bottom: 0;
}

.layer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.layer-components {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.component {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.component:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}
/* Services Section */
.services-section {
    padding: 5rem 0;
    background: white;
}

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

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.service-benefits li::before {
    content: '✓';
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.contact-info {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-methods {
    margin-top: var(--spacing-xl);
}

.contact-method {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.method-content p {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-note {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Contact Form */
.contact-form-container {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.contact-form {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--gray-900);
    background: white;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    text-align: center;
}

.form-note {
    margin-top: var(--spacing-md);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-note a {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: var(--spacing-3xl);
}

.footer-brand {
    animation: fadeInLeft 0.8s ease-out;
}

.footer-brand .brand-logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand .brand-text,
.footer-brand .brand-accent {
    color: white;
}

.footer-brand .brand-accent {
    color: var(--primary-light);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--primary-light);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    position: relative;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(8px);
}

.footer-column a:hover::before {
    opacity: 1;
    left: -16px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: var(--spacing-lg);
}

.legal-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .platform-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .mega-menu {
        width: 600px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    
    .navbar-actions {
        gap: var(--spacing-sm);
    }
    
    .hero-banner {
        padding: 6rem 0 3rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .header,
    .navbar,
    .hero-visual,
    .contact-form {
        display: none;
    }
    
    .hero-banner {
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}
/* Code Terminal Animation Styles - Add to existing CSS */

/* Replace the platform-preview styles with code terminal */
.code-terminal {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    overflow: hidden;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    max-width: 500px;
}

.code-terminal:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.control-dot.red {
    background: #ff5f56;
}

.control-dot.yellow {
    background: #ffbd2e;
}

.control-dot.green {
    background: #27ca3f;
}

.terminal-title {
    color: #8892b0;
    font-size: 12px;
    font-weight: 500;
}

.terminal-body {
    padding: 20px;
    background: #1a1a1a;
    min-height: 300px;
    overflow: hidden;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    animation: fadeInLine 0.5s ease-out forwards;
}

.code-line:nth-child(1) { animation-delay: 0.5s; }
.code-line:nth-child(2) { animation-delay: 1s; }
.code-line:nth-child(3) { animation-delay: 1.5s; }
.code-line:nth-child(4) { animation-delay: 2s; }
.code-line:nth-child(5) { animation-delay: 2.5s; }
.code-line:nth-child(6) { animation-delay: 3s; }
.code-line:nth-child(7) { animation-delay: 3.5s; }
.code-line:nth-child(8) { animation-delay: 4s; }
.code-line:nth-child(9) { animation-delay: 4.5s; }
.code-line:nth-child(10) { animation-delay: 5s; }

.prompt {
    color: #667eea;
    margin-right: 8px;
    font-weight: 600;
}

.command {
    color: #a0aec0;
    margin-right: 8px;
}

.typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 2s steps(20) 5.5s both;
    max-width: 0;
}

.output {
    color: #8892b0;
    margin-left: 16px;
}

.output.success {
    color: #27ca3f;
}

.cursor {
    color: #667eea;
    font-weight: bold;
    animation: blink 1s infinite;
}

.cursor.blink {
    animation: blink 1s infinite;
}

/* Floating AI Elements */
.ai-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.ai-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.node-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.ai-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.4), transparent);
    animation: dataFlow 4s ease-in-out infinite;
}

.con-1 {
    top: 35%;
    left: 15%;
    width: 200px;
    transform: rotate(25deg);
    animation-delay: 0.5s;
}

.con-2 {
    top: 55%;
    right: 20%;
    width: 150px;
    transform: rotate(-30deg);
    animation-delay: 1.5s;
}

.con-3 {
    bottom: 35%;
    left: 25%;
    width: 180px;
    transform: rotate(15deg);
    animation-delay: 2.5s;
}

/* Animations */
@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typewriter {
    from {
        max-width: 0;
    }
    to {
        max-width: 200px;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateX(-20px) scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scaleX(1);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scaleX(0.5);
    }
}

/* Responsive adjustments for code terminal */
@media (max-width: 768px) {
    .code-terminal {
        transform: none;
        max-width: 100%;
    }
    
    .terminal-body {
        padding: 16px;
        min-height: 250px;
    }
    
    .code-line {
        font-size: 11px;
        flex-wrap: wrap;
    }
    
    .ai-node {
        width: 30px;
        height: 30px;
        font-size: 8px;
    }
    
    .ai-connection {
        height: 1px;
    }
}
/* Blue Band at Top of Site */
.top-blue-band {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    height: 4px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}

/* Adjust header to account for blue band */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    position: fixed;
    top: 4px; /* Account for blue band */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Adjust body padding to account for header + blue band */
body {
    padding-top: 4px; /* Account for blue band */
}

/* Hero section padding adjustment */
.hero-banner {
    padding: 8rem 0 4rem; /* Slightly more top padding */
}

/* Alternative: Thicker blue band option */
.top-blue-band.thick {
    height: 8px;
}

/* Alternative: Animated blue band */
.top-blue-band.animated {
    background: linear-gradient(270deg, var(--primary-blue), var(--accent-purple), var(--primary-blue));
    background-size: 200% 200%;
    animation: blueGradient 4s ease infinite;
}

@keyframes blueGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Blue accent on navigation */
.header.with-blue-accent {
    border-top: 2px solid var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-blue-band {
        height: 3px;
    }
    
    .header {
        top: 3px;
    }
    
    body {
        padding-top: 3px;
    }
}
