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

html {
    scroll-behavior: smooth;
}

body {
    color: #6b7280;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Space for fixed navigation */
}

/* CSS Variables */
:root {
    /* Color Palette */
    --primary-color: #6265F0;
    --secondary-color: #AA59F7;
    --accent-color: #EC4A9D;
    --highlight-color: #6265F0;
    --accent: #6366F1;
    --accent-light: #8B5CF6;
    --foreground: #6b7280;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --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: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Background Pattern */
.bg-pattern {
    background-color: #ffffff;
    background-image: radial-gradient(
        circle at center,
        rgba(79, 70, 229, 0.05) 0%,
        rgba(79, 70, 229, 0.02) 25%,
        transparent 25%
    );
    background-size: 48px 48px;
    position: relative;
    background-attachment: fixed;
    min-height: 100vh;
}

.bg-gradient-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.5) 100%),
        radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent 50%),
        radial-gradient(circle at bottom left, rgba(129, 140, 248, 0.15), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    opacity: 0.1;
    filter: blur(50px);
    animation: float-around 20s linear infinite;
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(100px, 100px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Additional animations from main project */
@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.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(79, 70, 229, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
    }
}

/* Gradient Text */
.gradient-text {
    color: #6366F1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
    padding: 0;
    color: #6b7280;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 2.5rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}

.nav-logo a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0.75rem;
}

.nav-logo a:hover::before {
    opacity: 1;
}

.nav-logo a:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.nav-logo i {
    font-size: var(--font-size-2xl);
}

.logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-right: var(--spacing-3);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.1));
    position: relative;
    z-index: 1;
}

.nav-logo a:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.2));
}

.logo-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.nav-logo a:hover .logo-text {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
    white-space: nowrap;
    flex: 1;
    margin-left: 1.5rem;
}

.nav-menu .primary-button,
.nav-menu .investment-button {
    margin-left: 1.5rem;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 1rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
    font-size: var(--font-size-base);
    padding: var(--spacing-2) var(--spacing-3);
}

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

.nav-cta {
    margin-left: 0;
    white-space: nowrap;
    flex-shrink: 0;
    padding: var(--spacing-3) var(--spacing-5);
    font-size: var(--font-size-base);
    font-weight: 600;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 0.125rem;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0rem;
    padding: 0rem;
    border-radius: 0rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f9fafb;
}

.dropdown-item-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

/* Product-specific icon colors */
.dropdown-item:has(.healscript-blue) .dropdown-item-icon {
    color: #6366F1;
}

.dropdown-item:has(.healscript-operations-purple) .dropdown-item-icon {
    color: #8B5CF6;
}

.dropdown-item:has(.healconnect-pink) .dropdown-item-icon {
    color: #EC4899;
}

.dropdown-item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dropdown-item-content p {
    font-size: 0.875rem;
    color: #6b7280;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
}

/* Bar styles moved to mobile section */

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
    background: white;
    color: #6b7280;
    border: 1px solid #6b7280;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

/* Additional button styles for exact match */
.ml-2 { margin-left: 0.5rem; }
.rounded-md { border-radius: 0.375rem; }
.text-left { text-align: left; }
.leading-tight { line-height: 1.25; }

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    padding-bottom: 60px; /* Add space for fixed footer */
}

/* Tailwind-like utility classes */
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }

/* Typography */
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-md { font-size: 1rem; line-height: 1.5rem; }

@media (min-width: 768px) {
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.inline-block { display: inline-block; }

/* Colors */
.text-foreground { color: var(--foreground); }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-accent { color: var(--accent); }
.text-blue-400 { color: #60a5fa; }
.text-purple-400 { color: #a855f7; }
.text-pink-400 { color: #f472b6; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-accent\/90 { color: rgba(79, 70, 229, 0.9); }
.text-accent\/80 { color: rgba(79, 70, 229, 0.8); }

/* Backgrounds */
.bg-white { background-color: white; }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-blue-400\/10 { background-color: rgba(96, 165, 250, 0.1); }
.bg-purple-400\/10 { background-color: rgba(168, 85, 247, 0.1); }
.bg-pink-400\/10 { background-color: rgba(244, 114, 182, 0.1); }
.bg-blue-400\/20 { background-color: rgba(96, 165, 250, 0.2); }
.bg-purple-400\/20 { background-color: rgba(168, 85, 247, 0.2); }
.bg-pink-400\/20 { background-color: rgba(244, 114, 182, 0.2); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-white\/5 { --tw-gradient-from: rgba(255, 255, 255, 0.05); --tw-gradient-to: rgba(255, 255, 255, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-accent { --tw-gradient-from: var(--accent); --tw-gradient-to: rgba(79, 70, 229, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.to-accent-light { --tw-gradient-to: var(--accent-light); }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-accent\/20 { border-color: rgba(79, 70, 229, 0.2); }
.border-accent\/10 { border-color: rgba(79, 70, 229, 0.1); }
.border-blue-400\/30 { border-color: rgba(96, 165, 250, 0.3); }
.border-purple-400\/30 { border-color: rgba(168, 85, 247, 0.3); }
.border-pink-400\/30 { border-color: rgba(244, 114, 182, 0.3); }
.border-gray-200\/20 { border-color: rgba(229, 231, 235, 0.2); }

/* Border Radius */
.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: 0.375rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }

/* Padding */
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.pt-6 { padding-top: 1.5rem; }

/* Display */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }

/* Flexbox */
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Position */
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Transform */
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.left-1\/2 { left: 50%; }
.top-\[94\%\] { top: 94%; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }

/* Sizing */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-12 { height: 3rem; }
.h-0\.5 { height: 0.125rem; }
.h-\[600px\] { height: 600px; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Z-index */
.z-50 { z-index: 50; }

/* Text */
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.whitespace-nowrap { white-space: nowrap; }
.text-left { text-align: left; }

/* Backdrop */
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* Shadows */
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-\[0_0_0_8px_rgba\(96\,165\,250\,0\.1\)\] { box-shadow: 0 0 0 8px rgba(96, 165, 250, 0.1); }
.shadow-\[0_0_0_12px_rgba\(96\,165\,250\,0\.1\)\] { box-shadow: 0 0 0 12px rgba(96, 165, 250, 0.1); }
.shadow-\[0_0_0_8px_rgba\(168\,85\,247\,0\.1\)\] { box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.1); }
.shadow-\[0_0_0_12px_rgba\(168\,85\,247\,0\.1\)\] { box-shadow: 0 0 0 12px rgba(168, 85, 247, 0.1); }
.shadow-\[0_0_0_8px_rgba\(244\,114\,182\,0\.1\)\] { box-shadow: 0 0 0 8px rgba(244, 114, 182, 0.1); }
.shadow-\[0_0_0_12px_rgba\(244\,114\,182\,0\.1\)\] { box-shadow: 0 0 0 12px rgba(244, 114, 182, 0.1); }
.shadow-blue-400\/5 { box-shadow: 0 10px 15px -3px rgba(96, 165, 250, 0.05), 0 4px 6px -2px rgba(96, 165, 250, 0.05); }
.shadow-purple-400\/5 { box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.05), 0 4px 6px -2px rgba(168, 85, 247, 0.05); }
.shadow-pink-400\/5 { box-shadow: 0 10px 15px -3px rgba(244, 114, 182, 0.05), 0 4px 6px -2px rgba(244, 114, 182, 0.05); }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* Hover states */
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:border-blue-400\/30:hover { border-color: rgba(96, 165, 250, 0.3); }
.hover\:border-purple-400\/30:hover { border-color: rgba(168, 85, 247, 0.3); }
.hover\:border-pink-400\/30:hover { border-color: rgba(244, 114, 182, 0.3); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:shadow-blue-400\/5:hover { box-shadow: 0 10px 15px -3px rgba(96, 165, 250, 0.05), 0 4px 6px -2px rgba(96, 165, 250, 0.05); }
.hover\:shadow-purple-400\/5:hover { box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.05), 0 4px 6px -2px rgba(168, 85, 247, 0.05); }
.hover\:shadow-pink-400\/5:hover { box-shadow: 0 10px 15px -3px rgba(244, 114, 182, 0.05), 0 4px 6px -2px rgba(244, 114, 182, 0.05); }
.hover\:bg-accent\/5:hover { background-color: rgba(79, 70, 229, 0.05); }
.hover\:border-accent:hover { border-color: var(--accent); }
.hover\:text-blue-500:hover { color: #3b82f6; }
.hover\:text-purple-500:hover { color: #9333ea; }
.hover\:text-pink-500:hover { color: #ec4899; }

/* Group hover */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:shadow-\[0_0_0_12px_rgba\(96\,165\,250\,0\.1\)\] { box-shadow: 0 0 0 12px rgba(96, 165, 250, 0.1); }
.group:hover .group-hover\:shadow-\[0_0_0_12px_rgba\(168\,85\,247\,0\.1\)\] { box-shadow: 0 0 0 12px rgba(168, 85, 247, 0.1); }
.group:hover .group-hover\:shadow-\[0_0_0_12px_rgba\(244\,114\,182\,0\.1\)\] { box-shadow: 0 0 0 12px rgba(244, 114, 182, 0.1); }
.group:hover .group-hover\:border-blue-400\/30 { border-color: rgba(96, 165, 250, 0.3); }
.group:hover .group-hover\:border-purple-400\/30 { border-color: rgba(168, 85, 247, 0.3); }
.group:hover .group-hover\:border-pink-400\/30 { border-color: rgba(244, 114, 182, 0.3); }
.group:hover .group-hover\:shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.group:hover .group-hover\:shadow-blue-400\/5 { box-shadow: 0 10px 15px -3px rgba(96, 165, 250, 0.05), 0 4px 6px -2px rgba(96, 165, 250, 0.05); }
.group:hover .group-hover\:shadow-purple-400\/5 { box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.05), 0 4px 6px -2px rgba(168, 85, 247, 0.05); }
.group:hover .group-hover\:shadow-pink-400\/5 { box-shadow: 0 10px 15px -3px rgba(244, 114, 182, 0.05), 0 4px 6px -2px rgba(244, 114, 182, 0.05); }

/* Animations */
@keyframes float-gentle {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

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

@keyframes progress-line {
    0% {
        width: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    33% {
        width: 33%;
    }
    66% {
        width: 66%;
    }
    90% {
        opacity: 1;
        width: 100%;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

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

.animate-float { animation: float-gentle 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-progress-line { animation: progress-line 4s ease-in-out infinite; }

/* Additional animation classes */
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.8s ease-out forwards; }
.animate-fade-in-right { animation: fadeInRight 0.8s ease-out forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease-out forwards; }
.animate-slide-in-up { animation: slideInUp 0.8s ease-out forwards; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-subtle-bounce { animation: subtle-bounce 2s ease-in-out infinite; }
.animate-ping { animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-spin-slow { animation: spin-slow 20s linear infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }

/* Card highlight effects */
.card-highlight {
    --highlight-size: 250px;
    background-image: radial-gradient(
        circle var(--highlight-size) at var(--x, 0) var(--y, 0),
        rgba(79, 70, 229, 0.06),
        transparent 100%
    );
}

@keyframes card-shimmer {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-animate {
    animation: card-shimmer 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Feature card effects */
.feature-card-shadow {
    box-shadow: 
        0 10px 30px -5px rgba(79, 70, 229, 0.1),
        0 10px 20px -5px rgba(79, 70, 229, 0.04);
}

.feature-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 40px -5px rgba(79, 70, 229, 0.15),
        0 10px 20px -5px rgba(79, 70, 229, 0.1);
}

/* Mesh background */
.mesh-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: transparent;
    overflow: hidden;
}

.mesh-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at center,
        var(--accent) 1px,
        transparent 1.5px
    );
    background-size: 40px 40px;
}

/* Chip glow effect */
.chip-glow {
    position: relative;
    box-shadow: 
        0 0 20px -5px var(--accent),
        0 8px 16px -8px rgba(79, 70, 229, 0.2),
        0 0 0 1px rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
}

.chip-glow:hover {
    box-shadow: 
        0 0 25px -5px var(--accent),
        0 8px 16px -8px rgba(79, 70, 229, 0.3),
        0 0 0 1px rgba(79, 70, 229, 0.2);
    transform: translateY(-1px);
}

/* Shine effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -110deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.4) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        transparent 65%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shine 4s infinite linear;
    pointer-events: none;
}

/* Card animations */
@keyframes card-highlight-blue {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes card-highlight-purple {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes card-highlight-pink {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animate-card-1.animate {
    animation: card-highlight-pink 6s ease-in-out infinite;
    animation-delay: 0s;
}

.animate-card-2.animate {
    animation: card-highlight-blue 6s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-card-3.animate {
    animation: card-highlight-purple 6s ease-in-out infinite;
    animation-delay: 4s;
}

/* Primary Button */
.primary-button {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(236, 72, 153, 0.3);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.primary-button:hover {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 15px rgba(236, 72, 153, 0.4);
    text-decoration: none;
    color: white;
}

.primary-button:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 6px rgba(236, 72, 153, 0.3);
}

.primary-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -110deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.4) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        transparent 65%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shine 4s infinite linear;
    pointer-events: none;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FCD34D;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Icon sizing - SMALLER ICONS */
.icon-sm { font-size: 0.75rem !important; }
.fas, .far, .fab { font-size: 0.875rem !important; }
svg { width: 0.875rem; height: 0.875rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-3\.5 { width: 0.875rem; }
.h-3\.5 { height: 0.875rem; }

/* Missing utility classes */
.text-bg-white { background-color: white; }
.opacity-80 { opacity: 0.8; }
.opacity-30 { opacity: 0.3; }
.blur-sm { filter: blur(4px); }
.whitespace-nowrap { white-space: nowrap; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.leading-relaxed { line-height: 1.625; }
.text-gray-600\/90 { color: rgba(75, 85, 99, 0.9); }
.text-gray-700 { color: #374151; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-white\/5 { --tw-gradient-from: rgba(255, 255, 255, 0.05); --tw-gradient-to: rgba(255, 255, 255, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.text-accent\/80 { color: rgba(79, 70, 229, 0.8); }
.text-accent\/90 { color: rgba(79, 70, 229, 0.9); }
.text-accent\/5 { color: rgba(79, 70, 229, 0.05); }
.bg-accent\/5 { background-color: rgba(79, 70, 229, 0.05); }
.border-accent\/20 { border-color: rgba(79, 70, 229, 0.2); }
.border-accent\/10 { border-color: rgba(79, 70, 229, 0.1); }
.text-accent { color: var(--accent); }
.bg-white { background-color: white; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.text-foreground { color: var(--foreground); }
.text-gray-600 { color: #4b5563; }
.font { font-weight: 500; }
.text-md { font-size: 1rem; line-height: 1.5rem; }

/* Footer */
.footer {
    background: white;
    color: #6b7280;
    padding: 0.2rem 0 0.05rem;
    margin-top: 4rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}



.footer-section h3, .footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: #6b7280;
}

.footer-section h3:first-child {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6366F1 !important;
    letter-spacing: -0.5px;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
}

.footer-section p {
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 0.1rem;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    flex-direction: row;
}

.footer-links li {
    margin-bottom: 0;
    margin-right: 0.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Company links structure */
.company-links {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.company-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.company-row a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.company-row a:hover {
    color: var(--accent);
}

/* Connect content */
.connect-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}



.connect-content a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.connect-content a:hover {
    color: var(--accent);
}

.footer-links .linkedin-link,
.connect-content .linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links .linkedin-link:before,
.connect-content .linkedin-link:before {
    content: "in";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #6b7280;
    color: white;
    border-radius: 2px;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    line-height: 14px;
    margin-right: 0.25rem;
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.75rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.close {
    color: #6b7280;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: var(--accent);
}

/* Form Elements */
.contact-form {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 24px -1px rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Mobile Navigation - Duplicate styles removed */

/* Investment Button Styles */
.investment-button {
    background: #6366F1;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.investment-button:hover {
    background: #4F46E5;
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.4);
    text-decoration: none;
}

.investment-button:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.investment-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -110deg,
        transparent 0%,
        transparent 35%,
        rgba(255, 255, 255, 0.4) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        transparent 65%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shine 4s infinite linear;
    pointer-events: none;
}

.investment-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FCD34D;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Investment Modal Styles */
.investment-content {
    text-align: left;
}

.investment-details {
    margin: 1.5rem 0;
}

.investment-details h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.investment-details ul {
    list-style: none;
    padding: 0;
}

.investment-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.investment-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.investment-contact {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* Form Styles */
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Loading States */
body {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Animation Classes */
.animate {
    animation-fill-mode: both;
}

.animate-card-1.animate {
    animation: card-highlight-pink 6s ease-in-out infinite;
    animation-delay: 0s;
}

.animate-card-2.animate {
    animation: card-highlight-blue 6s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-card-3.animate {
    animation: card-highlight-purple 6s ease-in-out infinite;
    animation-delay: 4s;
}

.animate-progress-line.animate {
    animation: progress-line 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        border-top: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .nav-menu .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    .nav-menu .nav-dropdown {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .nav-menu .dropdown-menu {
        position: absolute;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.2);
        padding: 1rem;
        margin-top: 0;
        width: 100%;
        display: none;
        visibility: hidden;
        opacity: 0;
        border-radius: 12px;
        z-index: 1000;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .nav-menu .dropdown-item {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        background: rgba(99, 102, 241, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: #6265F0;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .md\:text-6xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .md\:text-5xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .md\:text-xl {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    
    .flex-col {
        flex-direction: column;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .dropdown-menu {
        min-width: 250px;
    }
    
    .h-\[600px\] {
        height: auto;
        min-height: 400px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .px-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .p-8 {
        padding: 1rem;
    }
    
    .gap-8 {
        gap: 1rem;
    }
    
    .gap-12 {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .sm\:flex-row {
        flex-direction: column;
    }
    
    .flex.gap-6 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .text-4xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .text-3xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .text-xl {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    
    .text-lg {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    
    .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-4 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .mb-12 {
        margin-bottom: 2rem;
    }
    
    .mb-16 {
        margin-bottom: 2rem;
    }
}

/* Page-specific styles */
.about-hero, .services-hero {
    padding: 4rem 0;
    text-align: center;
}

.about-hero-content, .services-hero-content {
    max-width: 4rem;
    margin: 0 auto;
}

.about-hero-title, .services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.about-hero-description, .services-hero-description {
    font-size: 1.25rem;
    color: #6b5563;
    max-width: 3rem;
    margin: 0 auto;
    line-height: 1.75;
}

.vision-mission {
    padding: 2rem 0 4rem 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 4rem;
    margin: 0 auto;
}

.vision-card, .mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-description {
    color: #6b5563;
    line-height: 1.6;
}

.services-grid-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
    padding: 2rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
    border-color: rgba(99,102,241,0.25);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-description {
    color: #6b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.1);
    color: var(--accent);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #E0E7FF;
    border-radius: 9999px;
    color: #212121;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.badge-text {
    color: var(--accent);
}

/* Contact page styles */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

/* Leadership page styles */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.leader-title {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.leader-bio {
    color: #6b5563;
    line-height: 1.6;
}

/* New Homepage Styles */
.hero-section {
    padding: 8rem 0 6rem;
    text-align: center;
    background: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
    color: #212121;
}

.title-line:nth-child(1) {
    color: #212121;
}

.title-line:nth-child(1) .highlight {
    color: #6366F1;
}

.title-line:nth-child(2) {
    color: #212121;
}

.title-line:nth-child(2) .highlight {
    color: #6366F1;
}

.title-line:nth-child(3) {
    color: #212121;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #212121;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #6b7280;
    border: 1px solid #6b7280;
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: white;
}

.cta-arrow {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.cta-button.primary:hover .cta-arrow {
    transform: translateX(2px);
}

.hero-partners {
    margin-top: 3rem;
}

.partners-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.vision-section {
    padding: 2rem 0;
    background: white;
}

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

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.05);
    color: #6366F1;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.vision-badge-icon {
    width: 1rem;
    height: 1rem;
    color: #6366F1;
}

.vision-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
}

.vision-subtitle {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212121;
    margin-bottom: 3rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.vision-subtitle .highlight {
    color: #6366F1;
}

.vision-description-box {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.vision-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #212121;
    text-align: left;
    margin: 0;
}

.integrated-solutions {
    padding: 6rem 0;
    background: white;
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: transparent;
    color: #6366F1;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.solutions-badge-icon {
    width: 1rem;
    height: 1rem;
    color: #6366F1;
}

.solutions-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
}

.solutions-subtitle {
    font-size: 3.5rem;
    font-weight: 800;
    color: #212121;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.solutions-subtitle .highlight {
    color: #6366F1;
}

.solutions-description {
    font-size: 1.125rem;
    color: #212121;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
    white-space: nowrap;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto 3rem auto;
    max-width: 1000px;
    justify-items: center;
}

.solution-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 500px;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blue-badge {
    background: #E0E7FF;
    color: #6366F1;
}

.purple-badge {
    background: #EDE9FE;
    color: #8B5CF6;
}

.pink-badge {
    background: #FCE7F3;
    color: #EC4899;
}

.badge-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-icon {
    background: transparent;
    color: #6366F1;
}

.purple-icon {
    background: transparent;
    color: #8B5CF6;
}

.pink-icon {
    background: transparent;
    color: #EC4899;
}

.card-icon svg {
    width: 2rem;
    height: 2rem;
}

.card-icon i {
    font-size: 2rem;
}

.card-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.card-title-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.5rem;
    text-align: left;
}

.solution-subtitle {
    font-size: 1rem;
    color: #212121;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 0;
}

.solution-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #212121;
    line-height: 1.4;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.blue-theme .check-icon {
    color: #6366F1;
}

.purple-theme .check-icon {
    color: #8B5CF6;
}

.pink-theme .check-icon {
    color: #EC4899;
}

.solution-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.blue-button {
    background: linear-gradient(135deg, #6265F0 0%, #6366F1 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
}

.blue-button .healscript-blue {
    color: white !important;
}

.blue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.4);
}

.purple-button {
    background: linear-gradient(135deg, #A855F7 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.3);
}

.purple-button .healscript-operations-purple {
    color: white !important;
}

.purple-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(139, 92, 246, 0.4);
}

.pink-button {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(236, 72, 153, 0.3);
}

.pink-button .healconnect-pink {
    color: white !important;
}

.pink-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(236, 72, 153, 0.4);
}

/* System Architecture Section */
.system-architecture {
    padding: 6rem 0 0 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.architecture-header {
    text-align: center;
    margin-bottom: 4rem;
}

.architecture-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.05);
    color: #6366F1;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.architecture-badge-icon {
    width: 1rem;
    height: 1rem;
    color: #6366F1;
}

.architecture-title {
    font-size: 3rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.architecture-description {
    font-size: 1.125rem;
    color: #6b7280;
}

.architecture-diagram {
    position: relative;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 600px;
    height: 60vh;
    padding: 2rem 1rem;
    --start-x: 350px;
    --start-y: 120px;
    --healvoice-x: 350px;
    --healvoice-y: 200px;
    --healscript-x: 600px;
    --healscript-y: 200px;
    --practitioner-x: 600px;
    --practitioner-y: 120px;
    --ehr-x: 800px;
    --ehr-y: 450px;
    --organization-x: 800px;
    --organization-y: 120px;
}

.diagram-container {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Card Base Styles */
.user-card, .product-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.user-card:hover, .product-card:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2),
                0 10px 10px -5px rgba(0, 0, 0, 0.04),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 20px 0 rgba(255, 255, 255, 0.1);
}

.product-card {
    width: 5rem;
    height: 5rem;
    margin-bottom: 0.5rem;
}

.user-card {
    width: 4rem;
    height: 4rem;
}

/* Container Positioning */
.individual-container, .practitioner-container, .organization-container,
.heal-voice-container, .heal-script-container, .ehr-container {
    text-align: center;
    transition: transform 0.3s ease;
    position: absolute;
    transform: translate(-50%, -50%);
    width: max-content;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.individual-container:hover, .practitioner-container:hover, .organization-container:hover,
.heal-voice-container:hover, .heal-script-container:hover, .ehr-container:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Remove all spacing and padding below HealConnect, HealScript, EMR icons */
.heal-voice-container h4,
.heal-script-container h4,
.ehr-container h4,
.heal-voice-container p,
.heal-script-container p,
.ehr-container p {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Specific Positioning */
.individual-container {
    left: 25%;
    top: 5%;
}

.practitioner-container {
    left: 50%;
    top: 5%;
}

.organization-container {
    left: 75%;
    top: 5%;
}

.heal-voice-container {
    left: 25%;
    top: 50%;
}

.heal-script-container {
    left: 50%;
    top: 50%;
}

.ehr-container {
    left: 75%;
    top: 50%;
}

/* Card Highlights - Exact Colors from CogneraWebsite */
.individual-highlight {
    border-color: rgba(79, 70, 229, 0.5); /* Indigo-600 */
}

.individual-highlight:hover {
    border-color: rgba(79, 70, 229, 0.8);
    box-shadow: 0 0 15px rgba(129, 140, 248, 0.3); /* Indigo-400 */
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(129, 140, 248, 0.1));
}

.practitioner-highlight {
    border-color: rgba(220, 38, 38, 0.5); /* Red-600 */
}

.practitioner-highlight:hover {
    border-color: rgba(220, 38, 38, 0.8);
    box-shadow: 0 0 15px rgba(248, 113, 113, 0.3); /* Red-400 */
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.1));
}

.organization-highlight {
    border-color: rgba(5, 150, 105, 0.5); /* Emerald-600 */
}

.organization-highlight:hover {
    border-color: rgba(5, 150, 105, 0.8);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.3); /* Emerald-400 */
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(52, 211, 153, 0.1));
}

.heal-voice-highlight {
    border-color: rgba(219, 39, 119, 0.5); /* Pink-600 */
}

.heal-voice-highlight:hover {
    border-color: rgba(219, 39, 119, 0.8);
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.3); /* Pink-400 */
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.1), rgba(244, 114, 182, 0.1));
    animation: glow 2s ease-in-out infinite;
}

.heal-script-highlight {
    border-color: rgba(147, 51, 234, 0.5); /* Purple-600 */
}

.heal-script-highlight:hover {
    border-color: rgba(147, 51, 234, 0.8);
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.3); /* Purple-400 */
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(192, 132, 252, 0.1));
    animation: glow 2s ease-in-out infinite;
}

.ehr-highlight {
    border-color: rgba(34, 197, 94, 0.5); /* Green-500 */
}

.ehr-highlight:hover {
    border-color: rgba(34, 197, 94, 0.8);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px var(--glow-color, rgba(244, 114, 182, 0.3));
    }
    50% {
        box-shadow: 0 0 25px var(--glow-color, rgba(244, 114, 182, 0.5));
    }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
    z-index: 5;
}

.connection-line line {
    stroke-dasharray: 8;
    stroke-width: 2;
    animation: dash 30s linear infinite;
}

/* Moving Dots Animation */
.moving-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--dot-color, #4f46e5);
    filter: blur(0px);
    z-index: 20;
    animation: moveDot 3s linear infinite;
    box-shadow: 0 0 4px var(--dot-color, #4f46e5);
}

@keyframes moveDot {
    0% {
        transform: translate(var(--start-x), var(--start-y)) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(
            calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.1),
            calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.1)
        ) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(
            calc(var(--start-x) + (var(--end-x) - var(--start-x)) * 0.9),
            calc(var(--start-y) + (var(--end-y) - var(--start-y)) * 0.9)
        ) scale(1);
    }
    100% {
        transform: translate(var(--end-x), var(--end-y)) scale(0.8);
        opacity: 0;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

/* Data Flow Effects */
.data-flow {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, var(--flow-color-start), var(--flow-color-end));
    border-radius: 50%;
    z-index: 15;
    animation: dataFlowMove 4s ease-in-out infinite;
    box-shadow: 0 0 8px var(--glow-color);
}

.particle-trail {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--glow-color);
    border-radius: 50%;
    z-index: 12;
    animation: particleMove 3s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes dataFlowMove {
    0% {
        transform: translate(var(--flow-start-x), var(--flow-start-y)) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(
            calc(var(--flow-start-x) + (var(--flow-end-x) - var(--flow-start-x)) * 0.1),
            calc(var(--flow-start-y) + (var(--flow-end-y) - var(--flow-start-y)) * 0.1)
        ) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(
            calc(var(--flow-start-x) + (var(--flow-end-x) - var(--flow-start-x)) * 0.9),
            calc(var(--flow-start-y) + (var(--flow-end-y) - var(--flow-start-y)) * 0.9)
        ) scale(1);
    }
    100% {
        transform: translate(var(--flow-end-x), var(--flow-end-y)) scale(0.5);
        opacity: 0;
    }
}

@keyframes particleMove {
    0% {
        transform: translate(var(--flow-start-x), var(--flow-start-y)) scale(0.3);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
        transform: translate(
            calc(var(--flow-start-x) + (var(--flow-end-x) - var(--flow-start-x)) * 0.2),
            calc(var(--flow-start-y) + (var(--flow-end-y) - var(--flow-start-y)) * 0.2)
        ) scale(0.8);
    }
    80% {
        opacity: 0.8;
        transform: translate(
            calc(var(--flow-start-x) + (var(--flow-end-x) - var(--flow-start-x)) * 0.8),
            calc(var(--flow-start-y) + (var(--flow-end-y) - var(--flow-start-y)) * 0.8)
        ) scale(0.8);
    }
    100% {
        transform: translate(var(--flow-end-x), var(--flow-end-y)) scale(0.3);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .architecture-diagram {
        min-height: 500px;
    }
    
    .diagram-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .architecture-diagram {
        min-height: 450px;
    }
    
    .diagram-container {
        max-width: 600px;
    }
    
    .product-card {
        width: 5rem;
        height: 5rem;
    }
    
    .user-card {
        width: 4rem;
        height: 4rem;
    }
    
    /* Adjust positions for mobile */
    .individual-container {
        left: 35%;
    }
    
    .organization-container {
        left: 80%;
        top: 15%;
    }
    
    .heal-voice-container {
        left: 20%;
    }
    
    .ehr-container {
        left: 80%;
        top: 75%;
    }
}

@media (max-width: 480px) {
    .architecture-diagram {
        min-height: 400px;
    }
    
    .diagram-container {
        max-width: 100%;
    }
    
    .product-card {
        width: 4rem;
        height: 4rem;
    }
    
    .user-card {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    /* Further adjust positions for smaller screens */
    .individual-container {
        left: 35%;
    }
    
    .organization-container {
        left: 80%;
        top: 15%;
    }
    
    .heal-voice-container {
        left: 25%;
    }
    
    .ehr-container {
        left: 80%;
        top: 75%;
    }
}

.benefits-section {
    padding: 2rem 0 1rem 0;
    background: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.05);
    color: #6366F1;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.benefits-badge-icon {
    width: 1rem;
    height: 1rem;
    color: #6366F1;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
}

.benefits-title .highlight {
    color: #6366F1;
}

.benefits-description {
    font-size: 1.125rem;
    color: #212121;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.benefit-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1.5rem;
    min-height: 160px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Compact version for HealConnect Integration section */
.benefit-card.compact {
    padding: 1.25rem;
}

/* Wider cards for HealTrack organization types */
#organization-types .benefit-card.compact {
    padding: 1.5rem 2rem;
}

.benefit-card.compact .benefit-header {
    margin-bottom: 0.75rem;
}

/* Base benefit description sizing */
.benefit-description {
    color: #212121;
    line-height: 1.7;
    font-size: 1.0625rem;
    margin-bottom: 0;
}

#organization-types .benefit-description {
    margin-bottom: 0;
    color: #212121;
    line-height: 1.6;
    font-size: 1rem;
}

#organization-types .solution-features {
    margin-top: 0.5rem;
}

#organization-types .feature-item {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

#organization-types .feature-item:last-child {
    margin-bottom: 0;
}

#organization-types .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #8B5CF6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

#organization-types .feature-item span {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Enterprise Healthcare Management section - matching organization types styling */
#features .benefit-card.compact {
    padding: 1.25rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#features .benefit-card.compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

#features .benefit-card.compact .benefit-header {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#features .benefit-description {
    margin-bottom: 0;
    color: #212121;
    line-height: 1.6;
    font-size: 1rem;
}

#features .solution-features {
    margin-top: 0.5rem;
}

#features .feature-item {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

#features .feature-item:last-child {
    margin-bottom: 0;
}

#features .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #8B5CF6;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

#features .feature-item span {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

#features .benefit-title {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 1.125rem;
    white-space: nowrap;
}

#features .benefit-icon {
    background: transparent;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#features .healtrack-svg {
    color: #8B5CF6;
    width: 43px !important;
    height: 43px !important;
}

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

.benefit-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border-radius: 0rem;
    padding: 0;
}

.benefit-svg {
    width: 3rem;
    height: 3rem;
    color: #6366F1;
    stroke: #6366F1;
    fill: none;
}

.healtrack-svg {
    width: 43px !important;
    height: 43px !important;
    color: #8B5CF6;
    stroke: #8B5CF6;
    fill: none;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6366F1;
    margin: 0;
    white-space: nowrap;
}

/* Purple theme for HealTrack organization types */
#organization-types .benefit-title {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 1.125rem;
    white-space: nowrap;
}

#organization-types .benefit-icon {
    background: transparent;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#organization-types .healtrack-svg {
    color: #8B5CF6;
    width: 43px !important;
    height: 43px !important;
}

.benefit-description {
    color: #212121;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive Design for Benefits Section */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .benefit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .benefit-svg {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .healtrack-svg {
        width: 43px !important;
        height: 43px !important;
    }
}

.integration-section {
    padding: 6rem 0;
    background: white;
}

.integration-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.05);
    color: #6366F1;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.integration-badge-icon {
    width: 1rem;
    height: 1rem;
    color: #6366F1;
}

.integration-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
}

.integration-title .highlight {
    color: #6366F1;
}

.integration-description {
    font-size: 1.125rem;
    color: #212121;
    line-height: 1.6;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.integration-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.integration-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.integration-card-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-card-icon i {
    color: #6366F1;
}

.integration-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6366F1;
    margin-bottom: 0.25rem;
}

.integration-card-subtitle {
    color: #212121;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.integration-features li:last-child {
    margin-bottom: 0;
}

.integration-features .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6366F1;
    flex-shrink: 0;
}

/* Responsive Design for Integration Section */
@media (max-width: 1024px) {
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .integration-title {
        font-size: 2.5rem;
        white-space: normal;
    }
}

.cta-section {
    padding: 2rem 0;
    background: white;
}

.cta-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(99, 102, 241, 0.05);
    color: #6366F1;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-badge-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #6366F1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212121;
    margin: 0 auto 1.5rem auto;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
}

.cta-title .highlight {
    color: #6366F1;
}

.cta-description {
    font-size: 1.125rem;
    color: #212121;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    justify-content: center;
}

.cta-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cta-card-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #6265F0;
}

.cta-card-icon i {
    color: #6265F0;
}

/* CTA Product-specific icon colors - matching navigation */
.cta-card-header:has(.healscript-blue) .cta-card-icon i {
    color: #6366F1;
}

.cta-card-header:has(.healscript-operations-purple) .cta-card-icon i {
    color: #8B5CF6;
}

.cta-card-header:has(.healconnect-pink) .cta-card-icon i {
    color: #EC4A9D;
}

.cta-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212121;
    margin: 0;
}

.cta-card-description {
    color: #212121;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex: 1;
}

.cta-card-link {
    color: #6265F0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cta-card-link:hover {
    color: #2563EB;
}

.cta-card-link-secondary {
    color: #AA59F7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cta-card-link-secondary:hover {
    color: #9333EA;
}

.cta-card-link-healconnect {
    color: #EC4A9D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-card-link-healconnect:hover {
    color: #DB2777;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.cta-button-primary {
    background: linear-gradient(135deg, #6366F1 0%, #6265F0 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.cta-button-secondary {
    background: white;
    color: #6b7280;
    padding: 1rem 2rem;
    border: 2px solid #6b7280;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-secondary:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-1px);
}

/* Responsive Design for CTA */
@media (max-width: 1024px) {
    .cta-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-cards {
        gap: 1rem;
    }
    
    .cta-card {
        padding: 1rem;
        min-height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .vision-subtitle {
        font-size: 2.5rem;
    }
    
    .vision-description-box {
        padding: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .solution-card {
        padding: 2rem;
        max-width: 100%;
    }
    
    .solutions-subtitle {
        font-size: 2.5rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .solution-title,
    .solution-subtitle {
        text-align: center;
    }
    
    .solutions-grid, .benefits-grid, .integration-grid, .cta-cards {
        grid-template-columns: 1fr;
    }
    
    .architecture-diagram {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .solution-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 0.25rem;
    }
    
    .footer-section:has(ul.footer-links:only-child) {
        padding-top: 0;
    }
}

/* Card highlight animations */
@keyframes card-highlight-pink {
    0%, 33%, 100% {
        transform: translateY(0);
        border-color: rgba(236, 72, 153, 0.1);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }
    5%, 28% {
        transform: translateY(-4px);
        border-color: rgba(236, 72, 153, 0.3);
        box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.3);
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(255, 255, 255, 0.05));
    }
}

@keyframes card-highlight-blue {
    0%, 33%, 100% {
        transform: translateY(0);
        border-color: rgba(96, 165, 250, 0.1);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }
    5%, 28% {
        transform: translateY(-4px);
        border-color: rgba(96, 165, 250, 0.3);
        box-shadow: 0 10px 30px -10px rgba(96, 165, 250, 0.3);
        background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(255, 255, 255, 0.05));
    }
}

@keyframes card-highlight-purple {
    0%, 33%, 100% {
        transform: translateY(0);
        border-color: rgba(168, 85, 247, 0.1);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }
    5%, 28% {
        transform: translateY(-4px);
        border-color: rgba(168, 85, 247, 0.3);
        box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.3);
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(255, 255, 255, 0.05));
    }
}

/* Additional utility classes */
.delay-300 {
    animation-delay: 300ms;
}

.bg-gradient-conic {
    background-image: conic-gradient(var(--tw-gradient-stops));
}

.text-bg-white {
    background-color: white;
}

/* Fade in up animation */
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

/* Product Name Color Classes */
.healscript-blue {
    color: #6366F1 !important;
    text-decoration: none !important;
}

.healscript-operations-purple {
    color: #8B5CF6 !important;
    text-decoration: none !important;
}

.healconnect-pink {
    color: #EC4899 !important;
    text-decoration: none !important;
}

/* Solution Features Styling */
.solution-features {
    margin-top: 1rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6265F0;
    flex-shrink: 0;
}

/* Blue color utilities */
.bg-blue-100 {
    background-color: #dbeafe !important;
}

.bg-blue-200 {
    background-color: #bfdbfe !important;
}

.border-blue-200 {
    border-color: #bfdbfe !important;
}

/* Client Progress Overview Animations */
@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 78%;
    }
}

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

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Universal Link Animations - Apply to all hyperlinks */
a:not(.cta-button-primary):not(.cta-button-secondary):not(.primary-button) {
    transition: all 0.3s ease;
}

a:not(.cta-button-primary):not(.cta-button-secondary):not(.primary-button):hover {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced animations for specific link types */
.nav-link:hover,
.dropdown-item:hover,
.footer-links a:hover,
a.healscript-blue:hover,
a.healconnect-pink:hover,
a.healscript-operations-purple:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Global text color overrides for previously black (#212121) elements */
/* Ensures index.html adopts #6b7280 without touching explicitly branded colors */
.title-line,
.hero-description,
.vision-description,
.solutions-description,
.architecture-description,
.benefits-description,
.integration-description,
.integration-card-subtitle,
.cta-description,
.cta-card-description,
.cta-title,
.benefits-title,
.integration-title,
.section-title,
.badge-text,
.solution-subtitle,
.feature-item,
.solution-title {
    color: #6b7280 !important;
}

/* Force benefits text to gray across sections */
.benefit-description,
#organization-types .benefit-description,
#features .benefit-description {
    color: #6b7280 !important;
}

/* Enforce smaller benefit cards on index benefits section */
.benefits-section .benefit-card {
    padding: 1.5rem !important;
    min-height: 160px !important;
}

.benefits-section .benefit-description {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
}

.services-dropdown {
    display: flex !important;
    width: 700px !important;
    min-width: 700px !important;
    max-width: 700px !important;
    flex-direction: row !important;
}

/* Flex utilities for pricing page */
.flex-1 {
    flex: 1 1 0%;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.dropdown-column {
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: column !important;
}

.dropdown-column:first-child {
    flex: 0 0 280px !important;
    border-right: 1px solid #e5e7eb;
    padding-right: 20px !important;
}

.dropdown-column:last-child {
    flex: 1 !important;
    padding-left: 20px !important;
}

.about-dropdown {
    display: flex !important;
    width: 700px !important;
    min-width: 700px !important;
    max-width: 700px !important;
    flex-direction: row !important;
}

/* Flex utilities for pricing page */
.flex-1 {
    flex: 1 1 0%;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Webinar card hover to match index solutions cards */
.webinar-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.webinar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* Training page card hover to match index solutions cards */
.training-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* Leadership page card hover to match others */
.leadership-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.leadership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* Careers page card hover to match others */
.careers-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.careers-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* Charities page card hover to match others */
.charities-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.charities-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* Press page card hover to match others */
.press-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* Legal page outer card hover to match others */
.legal-outer-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.legal-outer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* Social media page card hover to match others */
.social-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px -20px rgba(0,0,0,0.35);
  border-color: rgba(99,102,241,0.25);
}

/* ===== ENHANCED MOBILE OPTIMIZATIONS ===== */

/* Mobile-First Responsive Design */
@media (max-width: 480px) {
  /* Ultra-small mobile devices */
  body {
    padding-top: 60px;
    font-size: 14px;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .text-6xl {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  
  .text-5xl {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  
  .text-4xl {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  
  .text-3xl {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  
  .text-2xl {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }
  
  .text-xl {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  
  .text-lg {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
  
  /* Mobile-optimized spacing */
  .px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .px-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .py-8 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .py-6 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .mb-8 {
    margin-bottom: 1.5rem;
  }
  
  .mb-6 {
    margin-bottom: 1rem;
  }
  
  /* Mobile grid optimizations */
  .grid-cols-1 {
    grid-template-columns: 1fr;
  }
  
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  /* Mobile flex optimizations */
  .flex-col {
    flex-direction: column;
  }
  
  .flex-wrap {
    flex-wrap: wrap;
  }
  
  .gap-8 {
    gap: 1rem;
  }
  
  .gap-6 {
    gap: 0.75rem;
  }
  
  .gap-4 {
    gap: 0.5rem;
  }
  
  /* Mobile button optimizations */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-height: 44px; /* Touch-friendly minimum */
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px;
  }
  
  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    min-height: 40px;
  }
  
  /* Mobile card optimizations */
  .card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Mobile navigation optimizations */
  .navbar {
    height: 60px;
    padding: 0 1rem;
  }
  
  .nav-logo .logo-text {
    font-size: 1rem;
  }
  
  .nav-logo .logo-image {
    width: 32px;
    height: 32px;
  }
  
  /* Mobile hero section optimizations */
  .hero {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile form optimizations */
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-control {
    padding: 0.75rem;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 8px;
  }
  
  .form-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  /* Mobile table optimizations */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .table {
    font-size: 0.875rem;
    min-width: 600px;
  }
  
  /* Mobile modal optimizations */
  .modal {
    padding: 1rem;
  }
  
  .modal-content {
    margin: 1rem;
    border-radius: 12px;
  }
  
  .modal-header {
    padding: 1rem;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .modal-footer {
    padding: 1rem;
  }
}

/* CLEAN MOBILE NAVIGATION - BULLETPROOF */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 2rem 0 !important;
    transition: left 0.3s ease !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    border-top: 1px solid rgba(99, 102, 241, 0.1) !important;
    display: none !important;
  }

  .nav-menu.active {
    left: 0 !important;
    display: flex !important;
  }

  .nav-menu .nav-link {
    margin: 0.25rem 0;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    min-height: 44px; /* Touch-friendly */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu .nav-dropdown {
    width: 100%;
    margin: 0.25rem 0;
    position: relative;
  }

  .nav-menu .dropdown-menu {
    position: absolute !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1rem;
    margin-top: 0;
    width: 100%;
    display: none;
    visibility: hidden;
    opacity: 0;
    border-radius: 12px;
    z-index: 1000;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu .nav-dropdown.active .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .nav-menu .dropdown-item {
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .nav-menu .dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(4px);
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    min-width: 44px !important;
    min-height: 44px !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10000 !important;
  }

  .nav-toggle .bar {
    width: 25px !important;
    height: 3px !important;
    background: #6265F0 !important;
    margin: 3px 0 !important;
    transition: 0.3s !important;
    border-radius: 2px !important;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0 !important;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
  }

  .nav-buttons {
    display: none;
  }

  .primary-button, .investment-button {
    margin: 0.5rem 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 90%;
    text-align: center;
    min-height: 48px;
  }
}

/* Enhanced Mobile Footer */
@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: auto;
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-section p {
    font-size: 0.875rem;
  }
  
  .footer-section h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Touch device optimizations */
  .btn:hover,
  .nav-link:hover,
  .contact-card:hover {
    transform: none;
  }
  
  .btn:active,
  .nav-link:active {
    transform: scale(0.98);
  }
  
  /* Ensure minimum touch targets */
  a, button, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Remove hover effects on touch devices */
  .hover\:scale-105:hover {
    transform: none;
  }
  
  .hover\:shadow-lg:hover {
    box-shadow: inherit;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  .animate-card-1,
  .animate-card-2,
  .animate-card-3 {
    animation-duration: 0.3s;
  }
  
  /* Optimize backdrop filters for mobile */
  .contact-card,
  .modal-content {
    backdrop-filter: blur(10px);
  }
  
  /* Reduce shadow complexity on mobile */
  .contact-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  /* Optimize gradients for mobile */
  .hero {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 74, 157, 0.1) 100%);
  }
}

/* Mobile Accessibility Improvements */
@media (max-width: 768px) {
  /* Improve focus indicators for mobile */
  .btn:focus,
  .nav-link:focus,
  .form-control:focus {
    outline: 2px solid #6265F0;
    outline-offset: 2px;
  }
  
  /* Ensure sufficient color contrast */
  .text-gray-600 {
    color: #374151;
  }
  
  .text-gray-500 {
    color: #4B5563;
  }
  
  /* Improve readability */
  .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  /* Better spacing for readability */
  .prose p {
    margin-bottom: 1rem;
  }
  
  .prose h1,
  .prose h2,
  .prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

/* Mobile Landscape Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  
  .navbar {
    height: 50px;
  }
  
  .nav-menu {
    top: 50px;
    height: calc(100vh - 50px);
  }
}

/* Mobile Dark Mode Support */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
  .contact-card {
    background: rgba(31, 41, 55, 0.95);
    border-color: rgba(99, 102, 241, 0.2);
    color: #f3f4f6;
  }
  
  .nav-menu {
    background: rgba(31, 41, 55, 0.98);
    border-color: rgba(99, 102, 241, 0.2);
  }
  
  .modal-content {
    background: rgba(31, 41, 55, 0.95);
    color: #f3f4f6;
  }
}

/* Mobile Dropdown Menu Fixes */
@media (max-width: 768px) {
  .dropdown-menu {
    min-width: 100% !important;
    max-width: 100vw;
    left: 0 !important;
    right: 0;
    position: static !important;
    box-shadow: none;
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
  }
  
  .dropdown-menu.about-dropdown,
  .dropdown-menu.solutions-dropdown {
    min-width: 100% !important;
    max-width: 100vw;
  }
}

/* Mobile Table Fixes */
@media (max-width: 768px) {
  .table {
    min-width: 100% !important;
    font-size: 0.875rem;
  }
  
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile Form Fixes */
@media (max-width: 768px) {
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px;
  }
  
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
}

/* Mobile Image Fixes */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  
  .logo-image {
    max-width: 150px;
    height: auto;
  }
}

/* Mobile Container Fixes */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }
  
  .max-w-6xl {
    max-width: 100%;
  }
  
  .max-w-4xl {
    max-width: 100%;
  }
}

/* Mobile Text Wrapping Fixes */
@media (max-width: 768px) {
  .benefit-title,
  h4,
  .nav-link,
  .dropdown-item h4 {
    white-space: normal !important;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Fix specific elements with nowrap */
  [style*="white-space: nowrap"] {
    white-space: normal !important;
  }
  
  /* Fix progress bar text */
  #progress-bar-fill {
    white-space: normal !important;
  }
  
  /* Fix hero titles */
  .hero h1,
  .hero h2 {
    white-space: normal !important;
    overflow-wrap: break-word;
  }
  
  /* Fix footer text */
  .footer-section h3,
  .footer-section h4 {
    white-space: normal !important;
  }
}

/* Mobile Typography Fixes */
@media (max-width: 480px) {
  .benefit-title,
  h4 {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    white-space: normal !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    white-space: normal !important;
  }
  
  h1 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }
}