/* CSS Variables for consistent colors - Adonis.io inspired */
:root {
    /* Primary Colors - Adonis Blue Theme */
    --primary-blue: #0066ff;
    --primary-blue-hover: #0052cc;
    --primary-blue-light: #e6f2ff;
    --primary-gray: #64748b;
    --primary-gray-hover: #475569;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    
    /* Accent Colors */
    --accent-blue: #0066ff;
    --accent-green: #059669;
    --accent-red: #dc2626;
    --accent-yellow: #d97706;
    --accent-purple: #7c3aed;
    
    /* Gradients - Adonis inspired */
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0066ff 0%, #14b8a6 50%, #059669 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding-top: 160px; /* Space for fixed header */
    overflow-x: hidden; /* Prevent horizontal scroll */
    overflow-y: auto; /* Allow vertical scroll */
}

/* Ensure header dropdowns are not clipped */
header {
    overflow: visible !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Reduced padding for mobile header */
        -webkit-padding-top: 60px;
    }
    
    /* Ensure header doesn't overlap content */
    header {
        min-height: 60px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: var(--bg-primary) !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    header nav {
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 56px; /* Further reduced for very small screens */
        -webkit-padding-top: 56px;
    }
    
    header {
        min-height: 56px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
        background: var(--bg-primary) !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    header nav {
        min-height: 56px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Header */
header {
    background: var(--bg-primary) !important;
    border-bottom: 1px solid var(--border-light);
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important; /* Ensure dropdowns are not clipped */
}

@media (max-width: 768px) {
    header {
        box-shadow: var(--shadow-md);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    margin: 0 auto;
    max-width: 1400px;
    overflow: visible !important; /* Ensure dropdowns are not clipped */
    position: relative; /* Ensure proper stacking context */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    margin-left: 0;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
    margin-right: 10px;
    opacity: 1;
    filter: none;
}

                .nav-links {
            display: flex;
            list-style: none;
            gap: 24px;
            margin: 0;
            padding: 0;
            margin-left: 0;
            margin-right: 0;
            overflow: visible !important; /* Ensure dropdowns are not clipped */
            position: relative; /* Ensure proper stacking context */
        }

        .nav-links li {
            position: relative;
            overflow: visible !important; /* Ensure dropdowns are not clipped */
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 14px;
            transition: color 0.2s ease;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 4px;
        }

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

        /* Show dropdown arrow only on items with dropdowns */
        .nav-links li:has(.dropdown-menu) > a::after,
        .nav-links li:has(.mega-menu) > a::after {
            content: '▾';
            font-size: 12px;
            transition: transform 0.2s ease;
            margin-left: 4px;
        }

        .nav-links li:hover:has(.dropdown-menu) > a::after,
        .nav-links li:hover:has(.mega-menu) > a::after {
            transform: rotate(180deg);
        }

        /* Fallback for browsers without :has() support */
        .nav-links li.has-dropdown > a::after {
            content: '▾';
            font-size: 12px;
            transition: transform 0.2s ease;
            margin-left: 4px;
        }

        .nav-links li.has-dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-primary) !important; /* Ensure solid background */
            border: 1px solid var(--border-light);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 1001 !important; /* Increased z-index to be above background images */
            padding: 8px 0;
            overflow: visible !important; /* Ensure content is not clipped */
        }

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

        /* Standard dropdown menu (non-mega) */
        .dropdown-menu:not(.mega-menu) li {
            list-style: none;
        }

        .dropdown-menu:not(.mega-menu) a {
            display: block;
            padding: 12px 20px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .dropdown-menu:not(.mega-menu) a::after {
            display: none;
        }

        .dropdown-menu:not(.mega-menu) a:hover {
            background-color: var(--bg-secondary);
            color: var(--text-primary);
        }

        .dropdown-menu .dropdown-divider {
            height: 1px;
            background-color: var(--border-light);
            margin: 8px 0;
        }

        /* Mega Menu Styles - Multi-column dropdown */
        .mega-menu {
            min-width: 600px;
            max-width: 1200px; /* Increased from 900px to accommodate 4 columns */
            padding: 0;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            overflow: visible !important; /* Ensure content is not clipped */
            z-index: 1001 !important; /* Higher z-index to ensure it's above background images */
            background: var(--bg-primary) !important; /* Ensure solid white background */
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important; /* Stronger shadow for visibility */
        }

        .nav-links li:hover .mega-menu {
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu-content {
            display: flex;
            gap: 40px;
            padding: 32px 40px;
            overflow: visible !important; /* Ensure columns are not clipped */
        }

        .mega-menu-column {
            flex: 1;
            min-width: 200px;
            overflow: visible !important; /* Ensure column content is visible */
            position: relative; /* Ensure proper stacking context */
            z-index: 1; /* Ensure columns are above background */
        }
        
        /* Ensure last column is fully visible */
        .mega-menu-column:last-child {
            overflow: visible !important;
            z-index: 2; /* Higher z-index for last column */
        }
        
        /* Align list items across columns */
        .mega-menu-column .mega-menu-section {
            display: flex;
            flex-direction: column;
        }
        
        .mega-menu-column .mega-menu-list {
            margin-top: 0;
        }

        .mega-menu-section {
            margin-bottom: 32px;
        }

        .mega-menu-section:last-child {
            margin-bottom: 0;
        }

        .mega-menu-heading {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-light);
            line-height: 1.4;
            display: block;
        }
        
        /* Ensure invisible headings take up the same space for alignment */
        .mega-menu-heading[style*="opacity: 0"] {
            opacity: 0;
            height: auto;
            min-height: 0;
            margin-bottom: 12px;
            padding-bottom: 8px;
        }

        /* Multi-column menu - cleaner, more spacious design with configurable columns */
        /* Override .mega-menu centering to make it full width like other dropdowns */
        .multi-column-menu.mega-menu {
            min-width: 100%;
            max-width: 100%;
            padding: 0;
            left: 0 !important;
            right: 0;
            transform: translateY(-10px) !important;
            background: var(--bg-primary) !important;
            border: 1px solid var(--border-light);
            border-radius: 0;
            box-shadow: var(--shadow-lg);
        }

        .nav-links li:hover .multi-column-menu.mega-menu {
            transform: translateY(0) !important;
        }

        .multi-column-menu .mega-menu-content {
            padding: 40px 48px;
            gap: 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            max-width: 100%;
            box-sizing: border-box;
        }

        .multi-column-menu .mega-menu-column {
            min-width: 180px;
        }

        .multi-column-menu .mega-menu-section {
            margin-bottom: 40px;
        }

        .multi-column-menu .mega-menu-section:last-child {
            margin-bottom: 0;
        }

        .multi-column-menu .mega-menu-heading {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-light);
        }

        .multi-column-menu .mega-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .multi-column-menu .mega-menu-list li {
            margin-bottom: 12px;
        }

        .multi-column-menu .mega-menu-list li:last-child {
            margin-bottom: 0;
        }

        .multi-column-menu .mega-menu-list a {
            display: block;
            padding: 0;
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 400;
        }

        .multi-column-menu .mega-menu-list a .coming-soon {
            color: var(--accent-yellow);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s ease;
            line-height: 1.6;
        }

        .multi-column-menu .mega-menu-list a:hover {
            color: var(--primary-blue);
            padding-left: 0;
        }

        .multi-column-menu .mega-menu-list a::before {
            display: none;
        }

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

        .mega-menu-list li {
            margin-bottom: 8px;
        }

        .mega-menu-list li:last-child {
            margin-bottom: 0;
        }

        .mega-menu-list a {
            display: block;
            padding: 8px 0;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 400;
        }

        .mega-menu-list a .coming-soon {
            color: var(--accent-yellow);
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.2s ease, padding-left 0.2s ease;
            position: relative;
        }

        .mega-menu-list a:hover {
            color: var(--primary-blue);
            padding-left: 8px;
        }

        .mega-menu-list a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.2s ease;
        }

        .mega-menu-list a:hover::before {
            width: 4px;
        }

        /* Responsive Mega Menu */
        @media (max-width: 1024px) {
            .mega-menu {
                min-width: 500px;
                max-width: 700px;
            }

            .mega-menu-content {
                gap: 30px;
                padding: 24px 30px;
            }
        }

        /* Mobile mega menu styles are handled in the main responsive section below */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0;
}

.nav-actions .nav-link,
.nav-actions #login-link {
    text-decoration: none !important;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
    padding: 10px 0;
}

.nav-actions .nav-link:hover,
.nav-actions #login-link:hover {
    color: var(--text-primary);
    text-decoration: none !important;
}

.nav-actions #login-link:visited,
.nav-actions #login-link:active,
.nav-actions #login-link:focus {
    text-decoration: none !important;
}

.nav-cta {
    background: var(--primary-gray);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary-gray-hover);
}

.nav-cta-blue {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.nav-cta-blue:hover {
    background: var(--primary-blue-hover);
}

/* Hero Section */
.hero {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 140px 0 100px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.hero-cta {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-cta-blue {
    background: white;
    color: var(--primary-blue);
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
    border: 2px solid transparent;
    display: inline-block;
}

.hero-cta-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.4);
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.hero-secondary {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.hero-secondary:hover {
    color: white;
}

/* Hero Integrated Customer Section - Adonis.io inspired */
.hero-customers {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-customers h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    text-transform: none;
    letter-spacing: 0.025em;
    font-weight: 600;
}

.hero-testimonials {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

        .customer-logos {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 60px;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .customer-logos::before,
        .customer-logos::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }

        .customer-logos::before {
            left: 0;
            background: linear-gradient(to right, transparent 0%, transparent 100%);
        }

        .customer-logos::after {
            right: 0;
            background: linear-gradient(to left, transparent 0%, transparent 100%);
        }

        .customer-logos-scroll {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: scroll 30s linear infinite;
            white-space: nowrap;
        }

        .customer-logos-scroll:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .customer-logo {
            height: 40px;
            opacity: 0.8;
            filter: grayscale(100%);
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            white-space: nowrap;
        }

.customer-quote {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.customer-quote:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.quote-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    line-height: 1.6;
    font-weight: 500;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
    background: var(--bg-primary);
}

.features .container {
    position: relative;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 2px;
}

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

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature:nth-child(even) .feature-content {
    order: 2;
}

.feature:nth-child(even) .feature-demo {
    order: 1;
}

.feature h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    background: var(--primary-blue);
    color: var(--text-white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.code-demo, .feature-demo {
    background: var(--bg-dark-secondary);
    border-radius: 12px;
    padding: 24px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
}

.feature-demo {
    background: transparent;
    padding: 0;
    overflow: visible;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.code-header, .feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--text-secondary);
}

.code-dots, .feature-dots {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.code-dot, .feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot:nth-child(1), .feature-dot:nth-child(1) { background: #ef4444; }
.code-dot:nth-child(2), .feature-dot:nth-child(2) { background: #f59e0b; }
.code-dot:nth-child(3), .feature-dot:nth-child(3) { background: #10b981; }

.code-filename, .feature-filename {
    color: var(--border-medium);
    font-size: 13px;
}

.code-content, .feature-content {
    color: var(--border-light);
    line-height: 1.6;
}

.code-keyword, .feature-keyword { color: #f472b6; }
.code-string, .feature-string { color: #34d399; }
.code-function, .feature-function { color: #60a5fa; }
.code-comment, .feature-comment { color: #9ca3af; }

/* Three Column Features */
.three-col-features {
    background: var(--bg-primary);
    padding: 120px 0;
    border-top: none;
}

.three-col-features h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.three-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.col-feature {
    background: var(--bg-primary);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.col-feature:focus-within {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.col-feature:hover .col-feature-icon {
    transform: scale(1.1);
}

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

/* Staggered animation delays for feature cards */
.col-feature:nth-child(1) { animation-delay: 0.1s; }
.col-feature:nth-child(2) { animation-delay: 0.2s; }
.col-feature:nth-child(3) { animation-delay: 0.3s; }
.col-feature:nth-child(4) { animation-delay: 0.4s; }
.col-feature:nth-child(5) { animation-delay: 0.5s; }
.col-feature:nth-child(6) { animation-delay: 0.6s; }
.col-feature:nth-child(7) { animation-delay: 0.7s; }
.col-feature:nth-child(8) { animation-delay: 0.8s; }
.col-feature:nth-child(9) { animation-delay: 0.9s; }

.col-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: transform 0.2s ease;
}

.col-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.col-feature p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* CTA Section */
.final-cta {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0.4;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    color: var(--text-primary);
}

.final-cta p {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

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

        .footer-content {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

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

.footer-section ul li {
    padding: 4px 0;
}

.footer-section ul li a {
    color: var(--border-medium);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--text-secondary);
    padding-top: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* Consistent Section Spacing */
.section-padding {
    padding: 100px 0;
}

.section-padding-large {
    padding: 120px 0;
}

.section-padding-medium {
    padding: 80px 0;
}

.section-padding-small {
    padding: 60px 0;
}

/* Consistent Container Spacing */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Consistent Card Styling - MCP Inspired */
.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.card:hover {
    border-color: #d1d5db;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card h3,
.card h2,
.card h1 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 8px;
}

.card p {
    color: #4b5563;
}

/* Clickable card variant */
.card-clickable {
    cursor: pointer;
}

.card-clickable:hover {
    border-color: #9ca3af;
    transform: translateY(-1px);
}

/* Consistent Button Styling */
.btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
}

/* Toggle Switch Styles */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary-blue);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

/* Pricing Toggle Styles */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.btn-secondary {
    background: var(--primary-gray);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-gray-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo {
        margin-left: 0;
    }
    
    .logo img {
        height: 50px !important;
        max-height: 50px !important;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .mega-menu {
        min-width: 500px;
        max-width: 1200px; /* Increased to match desktop for better visibility */
        overflow: visible !important;
    }
    
    .mega-menu-content {
        gap: 30px;
        padding: 24px 30px;
        overflow: visible !important; /* Ensure columns are not clipped */
    }
}

@media (max-width: 768px) {
    header {
        box-shadow: var(--shadow-md);
    }
    
    nav {
        padding: 10px 16px;
        flex-wrap: nowrap;
        position: relative;
        min-height: 60px;
        align-items: center;
        display: flex !important;
        justify-content: space-between;
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
    }
    
    .logo {
        margin-left: 0;
        flex: 0 0 auto;
        min-width: 0;
        max-width: calc(100% - 100px);
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 1;
        z-index: 1002;
    }
    
    .logo img {
        height: 40px !important;
        max-height: 40px !important;
        width: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        object-fit: contain;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
        margin-left: auto;
        margin-right: 0;
        flex-shrink: 0;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1002;
        background: transparent;
        border: none;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
        background-color: var(--text-primary) !important;
    }
    
    .nav-actions {
        order: 2;
        display: none !important; /* Hide nav-actions in header on mobile */
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent;
        border: none;
        width: auto;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .nav-actions.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: 100% !important;
        overflow: visible !important;
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        padding: 12px 16px;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-light);
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 998;
        box-shadow: var(--shadow-md);
    }
    
    .nav-actions .nav-link {
        font-size: 16px;
        text-align: center;
        padding: 12px;
    }
    
    .nav-cta,
    .nav-cta-blue {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none !important;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        padding: 16px 24px;
        width: 100%;
        font-size: 16px;
    }
    
    .nav-links li.has-dropdown > a::after {
        margin-left: auto;
    }
    
    /* Mobile dropdown menus */
    .dropdown-menu,
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        max-width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-light);
        border-radius: 0;
        margin: 0;
        padding: 0;
        background: var(--bg-secondary);
    }
    
    .mega-menu-content {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .mega-menu-column {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
    }
    
    .mega-menu-section {
        margin-bottom: 0;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .mega-menu-section:last-child {
        border-bottom: none;
    }
    
    .mega-menu-heading {
        font-size: 11px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .mega-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mega-menu-list li {
        border-bottom: 1px solid var(--border-light);
    }
    
    .mega-menu-list li:last-child {
        border-bottom: none;
    }
    
    .mega-menu-list a {
        display: block;
        padding: 12px 0;
        color: var(--text-secondary);
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .mega-menu-list a:hover {
        color: var(--text-primary);
        background: transparent;
    }
    
    .mega-menu-list a::before {
        display: none;
    }
    
    /* Hide dropdown arrows on mobile - menus are always visible when parent is active */
    .nav-links li.has-dropdown > a::after {
        content: '▾';
    }
    
    .nav-links li.has-dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    /* Make dropdowns toggleable on mobile */
    .nav-links li.has-dropdown .dropdown-menu,
    .nav-links li.has-dropdown .mega-menu {
        display: none;
    }
    
    .nav-links li.has-dropdown.active .dropdown-menu,
    .nav-links li.has-dropdown.active .mega-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2::after {
        width: 40px;
        height: 3px;
    }

    .feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature:nth-child(even) .feature-content {
        order: 1;
    }

    .feature:nth-child(even) .feature-demo {
        order: 2;
    }

    .three-col-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
}

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

@media (max-width: 768px) {
    .three-col-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

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

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    footer {
        padding: 40px 0 30px;
    }
    
    .footer-section {
        margin-bottom: 24px;
    }
    
    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    header {
        box-shadow: var(--shadow-md);
    }
    
    nav {
        padding: 8px 12px;
        min-height: 56px;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo img {
        height: 36px !important;
        max-height: 36px !important;
        width: auto !important;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        padding: 6px;
    }
    
    .nav-links {
        top: 56px;
        max-height: calc(100vh - 56px);
    }
    
    .nav-links a {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .nav-actions {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .nav-actions.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        width: 100% !important;
        overflow: visible !important;
        padding: 10px 12px;
        top: 56px;
        left: 0 !important;
    }
    
    .nav-cta,
    .nav-cta-blue {
        padding: 12px 16px;
        font-size: 15px;
        min-height: 44px;
    }
    
    .mega-menu-section {
        padding: 16px 20px;
    }
    
    .mega-menu-list a {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    footer {
        padding: 30px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 30px;
        margin-right: 50px;
    }
    
    .nav-links a {
        font-size: 15px;
    }
    
    .mega-menu {
        min-width: 550px;
        max-width: 1200px; /* Increased to match desktop for better visibility */
        overflow: visible !important;
    }
    
    .mega-menu-content {
        gap: 30px;
        overflow: visible !important; /* Ensure columns are not clipped */
        padding: 28px 35px;
    }
} 

/* ===== PAGE-SPECIFIC STYLES ===== */

/* === rcm-agents.html === */

        /* Simple, reliable styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background: #ffffff;
        }
        
        
        .rcm-hero {
            background: #111827;
            color: #ffffff;
            padding: 60px 20px;
            margin-top: 120px;
            text-align: center;
        }

        .rcm-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .rcm-hero p {
            font-size: 1.2rem;
            color: #d1d5db;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-section {
            background: #f9fafb;
            padding: 40px 20px;
        }

        .search-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .search-box {
            margin-bottom: 20px;
        }

        .search-box input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            background: #ffffff;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary-blue);
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 8px 16px;
            border: 2px solid #e5e7eb;
            background: #ffffff;
            border-radius: 20px;
            font-size: 0.875rem;
            color: var(--text-muted);
            cursor: pointer;
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--primary-blue);
            background: var(--primary-blue);
            color: #ffffff;
        }

        .rcm-section {
            padding: 40px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #c7cbd4;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .agents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .agent-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .agent-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .agent-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 12px;
            color: #ffffff;
        }

        .agent-info h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #111827;
        }

        .agent-type {
            display: inline-block;
            background: var(--primary-blue);
            color: #ffffff;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .agent-description {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .agent-features h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111827;
        }

        .agent-features ul {
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
        }

        .agent-features li {
            padding: 5px 0;
            color: var(--text-muted);
            position: relative;
            padding-left: 20px;
            font-size: 0.9rem;
        }

        .agent-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }

        .agent-personas h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111827;
        }

        .agent-personas p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .category-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        
        @media (max-width: 768px) {
            .rcm-hero h1 {
                font-size: 2rem;
            }
            
            .rcm-hero p {
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .agents-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-list {
                display: none;
            }
        }
    

/* === agent-repository.html === */

        /* Additional styles specific to this page */
        .repository-hero {
            background: #111827;
            color: white;
            padding: 120px 0 80px;
            margin-top: 70px;
            text-align: center;
        }

        .repository-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            color: white;
        }

        .repository-hero p {
            font-size: 1.5rem;
            color: #d1d5db;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .agent-category {
            padding: 100px 0;
        }

        .agent-category:nth-child(even) {
            background: #f9fafb;
        }

        .category-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .category-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #111827;
        }

        .category-header p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .agents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .agent-card {
            background: white;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid #e5e7eb;
        }

        .agent-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .agent-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .agent-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 16px;
            flex-shrink: 0;
        }

        .agent-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #111827;
        }

        .agent-type {
            background: var(--primary-blue);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
        }

        .agent-description {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .agent-features {
            margin-bottom: 20px;
        }

        .agent-features h4 {
            font-size: 14px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .agent-features ul {
            list-style: none;
            padding: 0;
        }

        .agent-features li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .agent-features li::before {
            content: '✓';
            background: #111827;
            color: white;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            font-weight: bold;
            font-size: 10px;
            flex-shrink: 0;
        }

        .agent-personas {
            background: #f9fafb;
            padding: 16px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-blue);
        }

        .agent-personas h4 {
            font-size: 14px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .agent-personas p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        .category-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .stat-card {
            background: white;
            padding: 32px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-muted);
            font-weight: 500;
        }

        .repository-cta {
            background: #111827;
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .repository-cta h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

        .repository-cta p {
            font-size: 1.25rem;
            color: #d1d5db;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .repository-hero h1 {
                font-size: 2.5rem;
            }
            
            .category-header h2 {
                font-size: 2rem;
            }
            
            .agents-grid {
                grid-template-columns: 1fr;
            }
            
            .repository-cta h2 {
                font-size: 2rem;
            }
        }
    

/* === resources.html === */

        /* Documentation-specific styles */
        .doc-hero {
            background: var(--bg-dark);
            color: var(--text-white);
            padding: 120px 0 80px;
            margin-top: 70px;
            text-align: center;
        }

        .doc-hero h1 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-white);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .doc-hero p {
            font-size: 1.25rem;
            color: var(--border-medium);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .doc-search {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }

        .doc-search input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .doc-search input:focus {
            border-color: var(--primary-blue);
        }

        .doc-search button {
            background: var(--primary-blue);
            color: var(--text-white);
            border: none;
            padding: 15px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .doc-search button:hover {
            background: var(--primary-blue-hover);
        }

        .doc-section {
            padding: 80px 0;
        }

        .doc-section h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 50px;
            color: var(--text-primary);
        }

        .doc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .doc-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 24px;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .doc-card:hover {
            border-color: #d1d5db;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }

        .doc-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .doc-card ul {
            list-style: none;
            padding: 0;
        }

        .doc-card li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .doc-card li:last-child {
            border-bottom: none;
        }

        .doc-card a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .doc-card a:hover {
            color: var(--primary-blue);
        }

        .quick-start-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .quick-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 24px;
            text-align: center;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .quick-card:hover {
            border-color: #d1d5db;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }

        .quick-card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .quick-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .quick-card p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .quick-card a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .quick-card a:hover {
            color: var(--primary-blue-hover);
        }
    

/* === pricing-practices.html === */

        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        .pricing-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.2s ease;
            position: relative;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        
        .pricing-card.featured {
            border-color: #0066ff;
            border-width: 2px;
        }
        
        .pricing-card:hover {
            border-color: #d1d5db;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        .pricing-card.featured:hover {
            border-color: #0052cc;
        }
        
        .featured-badge {
            position: absolute;
            top: 5px;
            right: 20px;
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .plan-name {
            font-size: 28px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 10px;
        }
        
        .plan-subtitle {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .price {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .price-period {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .price-note {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
            text-align: left;
        }
        
        .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
            color: var(--text-secondary);
            position: relative;
            padding-left: 30px;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 16px;
        }
        
        .features-list li.unavailable::before {
            content: '✗';
            color: #ef4444;
        }
        
        .features-list li.unavailable {
            color: #9ca3af;
            text-decoration: line-through;
        }
        
        .pricing-cta {
            width: 100%;
            padding: 16px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }
        
        .pricing-cta.primary {
            background: var(--primary-blue);
            color: white;
        }
        
        .pricing-cta.primary:hover {
            background: var(--primary-blue-hover);
            transform: translateY(-2px);
        }
        
        .pricing-cta.secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .pricing-cta.secondary:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .usage-based {
            background: #f0f9ff;
            border: 1px solid #0ea5e9;
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
        }
        
        .usage-based h3 {
            color: #0c4a6e;
            margin-bottom: 20px;
        }
        
        .usage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .usage-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e0f2fe;
        }
        
        .usage-item h4 {
            color: #0c4a6e;
            margin-bottom: 10px;
        }
        
        .usage-price {
            font-size: 24px;
            font-weight: 700;
            color: #0ea5e9;
        }
        
        .enterprise-cta {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 60px 40px;
            border-radius: 16px;
            text-align: center;
            margin-top: 40px;
        }
        
        .enterprise-cta h3 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .enterprise-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .enterprise-cta .pricing-cta {
            background: var(--primary-blue);
            color: white;
            font-size: 18px;
            padding: 20px 40px;
        }

        .trust-badges {
            text-align: center;
            margin: 60px 0;
        }
        
        .trust-badges h3 {
            color: var(--text-muted);
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .badge-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .badge-icon {
            width: 60px;
            height: 60px;
            background: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .badge-text {
            font-size: 14px;
            color: var(--text-muted);
            text-align: center;
        }

        .all-plans-include {
            text-align: center;
            margin: 60px 0;
            padding: 40px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 16px;
            border: 2px solid #0ea5e9;
        }

        .all-plans-include h3 {
            color: #0c4a6e;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.4;
        }
        
        .faq-section {
            margin-top: 80px;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .faq-item {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
        }
        
        .faq-item h4 {
            color: #111827;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .faq-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
    

/* === pricing-rcm.html === */

        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .pricing-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.2s ease;
            position: relative;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        
        .pricing-card.featured {
            border-color: #0066ff;
            border-width: 2px;
        }
        
        .pricing-card:hover {
            border-color: #d1d5db;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        .pricing-card.featured:hover {
            border-color: #0052cc;
        }
        
        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .plan-name {
            font-size: 28px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 10px;
        }
        
        .plan-subtitle {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .price {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .price-period {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .price-note {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
            text-align: left;
        }
        
        .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
            color: var(--text-secondary);
            position: relative;
            padding-left: 30px;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 16px;
        }
        
        .features-list li.unavailable::before {
            content: '✗';
            color: #ef4444;
        }
        
        .features-list li.unavailable {
            color: #9ca3af;
            text-decoration: line-through;
        }
        
        .pricing-cta {
            width: 100%;
            padding: 16px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }
        
        .pricing-cta.primary {
            background: var(--primary-blue);
            color: white;
        }
        
        .pricing-cta.primary:hover {
            background: var(--primary-blue-hover);
            transform: translateY(-2px);
        }
        
        .pricing-cta.secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .pricing-cta.secondary:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .usage-based {
            background: #f0f9ff;
            border: 1px solid #0ea5e9;
            border-radius: 12px;
            padding: 30px;
            margin-top: 40px;
        }
        
        .usage-based h3 {
            color: #0c4a6e;
            margin-bottom: 20px;
        }
        
        .usage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .usage-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e0f2fe;
        }
        
        .usage-item h4 {
            color: #0c4a6e;
            margin-bottom: 10px;
        }
        
        .usage-price {
            font-size: 24px;
            font-weight: 700;
            color: #0ea5e9;
        }
        
        .trust-badges {
            text-align: center;
            margin: 60px 0;
        }
        
        .trust-badges h3 {
            color: var(--text-muted);
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .badge-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .badge-icon {
            width: 60px;
            height: 60px;
            background: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .badge-text {
            font-size: 14px;
            color: var(--text-muted);
            text-align: center;
        }
        
        .faq-section {
            margin-top: 80px;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .faq-item {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
        }
        
        .faq-item h4 {
            color: #111827;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .faq-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        .enterprise-cta {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 60px 40px;
            border-radius: 16px;
            text-align: center;
            margin-top: 40px;
        }
        
        .enterprise-cta h3 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        
        .enterprise-cta p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .enterprise-cta .pricing-cta {
            background: var(--primary-blue);
            color: white;
            font-size: 18px;
            padding: 20px 40px;
        }
    

/* === solution-by-rcm-billing-providers.html & solution-by-ehr-providers.html === */

        /* Additional styles specific to this page */
        .solutions-hero {
            background: #111827;
            color: white;
            padding: 120px 0 80px;
            margin-top: 70px;
            text-align: center;
        }

        .solutions-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            color: white;
        }

        .solutions-hero p {
            font-size: 1.5rem;
            color: #d1d5db;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .solution-card {
            background: white;
            padding: 40px 32px;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .solution-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .solution-card h2 {
            color: #111827;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .solution-card h2::before {
            content: "🚀";
            font-size: 2rem;
        }

        .solution-card h3 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            font-weight: 600;
            margin: 24px 0 16px 0;
            border-left: 4px solid var(--primary-blue);
            padding-left: 15px;
        }

        .solution-card ul {
            list-style: none;
            padding: 0;
        }

        .solution-card li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: var(--text-secondary);
        }

        .solution-card li::before {
            content: '✓';
            background: #111827;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 12px;
        }

        .benefits-section {
            background: #f9fafb;
            padding: 100px 0;
        }

        .benefits-section h2 {
            color: #111827;
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

        /* Fix section-title in benefits-section - ensure dark text on light background */
        .benefits-section .section-title {
            color: #111827 !important;
            text-shadow: none;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            background: white;
            color: #111827;
            padding: 32px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .benefit-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .benefit-item h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #111827;
        }

        .benefit-item p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .ai-agents-section {
            background: white;
            padding: 100px 0;
        }

        .ai-agents-section h2 {
            color: #111827;
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

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

        .agent-card {
            background: #111827;
            color: white;
            padding: 32px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .agent-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .agent-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: white;
        }

        .agent-card p {
            font-size: 0.95rem;
            color: #d1d5db;
            line-height: 1.6;
        }

        .metrics-section {
            background: #f9fafb;
            padding: 100px 0;
        }

        .metrics-section h2 {
            color: #111827;
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .metric-item {
            text-align: center;
            padding: 32px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .metric-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .metric-label {
            font-size: 1.1rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .solutions-cta {
            background: #111827;
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .solutions-cta h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

        .solutions-cta p {
            font-size: 1.25rem;
            color: #d1d5db;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .solutions-cta .hero-cta-blue {
            background: var(--primary-blue);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .solutions-cta .hero-cta-blue:hover {
            background: var(--primary-blue-hover);
        }

        @media (max-width: 768px) {
            .solutions-hero h1 {
                font-size: 2.5rem;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .agents-grid {
                grid-template-columns: 1fr;
            }

            .benefits-section h2,
            .ai-agents-section h2,
            .metrics-section h2,
            .solutions-cta h2 {
                font-size: 2rem;
            }
        }
    

/* === agentic-platform-features.html === */

        .feature-highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            margin: 40px 0;
        }
        
        .feature-highlight h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .feature-highlight p {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .benefit-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            color: #111827;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .benefit-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }
        
        .architecture-section {
            background: #f8fafc;
            padding: 80px 0;
            margin: 40px 0;
        }
        
        .architecture-diagram {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .architecture-layers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .layer {
            background: #f1f5f9;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }
        
        .layer h4 {
            color: #0f172a;
            margin-bottom: 10px;
        }
        
        .layer p {
            color: #475569;
            font-size: 0.9rem;
        }
        
        .integration-examples {
            background: #f0f9ff;
            border: 1px solid #0ea5e9;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .code-example {
            background: #1e293b;
            color: #e2e8f0;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            overflow-x: auto;
        }
        
        .code-keyword {
            color: #60a5fa;
        }
        
        .code-string {
            color: #34d399;
        }
        
        .code-comment {
            color: var(--text-muted);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .comparison-table th {
            background: #f9fafb;
            font-weight: 600;
            color: #111827;
        }
        
        .comparison-table tr:hover {
            background: #f9fafb;
        }
        
        .checkmark {
            color: #10b981;
            font-weight: bold;
        }
        
        .x-mark {
            color: #ef4444;
            font-weight: bold;
        }
        
        .stats-section {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 80px 0;
            margin: 40px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #60a5fa;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
    

/* === solution-by-practice-specialty.html === */

        .specialty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .specialty-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .specialty-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue);
        }
        
        .specialty-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .specialty-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin-right: 20px;
        }
        
        .specialty-info h3 {
            margin: 0 0 5px 0;
            font-size: 20px;
            font-weight: 600;
            color: #111827;
        }
        
        .specialty-info .category {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
        }
        
        .specialty-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .specialty-features {
            background: #f8fafc;
            border-radius: 8px;
            padding: 20px;
            border-left: 4px solid var(--primary-blue);
        }
        
        .specialty-features h4 {
            margin: 0 0 10px 0;
            color: #111827;
            font-size: 16px;
            font-weight: 600;
        }
        
        .specialty-features ul {
            margin: 0;
            padding-left: 20px;
            color: var(--text-secondary);
        }
        
        .specialty-features li {
            margin-bottom: 5px;
            line-height: 1.5;
        }
        
        .specialty-stats {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
    

/* === solution-by-practice-type.html === */

        .size-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .size-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 40px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .size-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-hover));
        }
        
        .size-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-blue);
        }
        
        .size-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .size-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 600;
            margin: 0 auto 20px;
        }
        
        .size-info h3 {
            margin: 0 0 10px 0;
            font-size: 28px;
            font-weight: 700;
            color: #111827;
        }
        
        .size-info .subtitle {
            color: var(--text-muted);
            font-size: 16px;
            font-weight: 500;
        }
        
        .size-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .size-features {
            background: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .size-features h4 {
            margin: 0 0 15px 0;
            color: #111827;
            font-size: 18px;
            font-weight: 600;
        }
        
        .size-features ul {
            margin: 0;
            padding-left: 20px;
            color: var(--text-secondary);
        }
        
        .size-features li {
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        .size-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat {
            text-align: center;
            padding: 20px;
            background: #f8fafc;
            border-radius: 8px;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 5px;
        }
        
        .size-cta {
            text-align: center;
        }
        
        .size-cta .hero-cta {
            width: 100%;
            margin-bottom: 10px;
        }
        
        .size-cta .hero-cta-blue {
            width: 100%;
        }
        
        .practice-count {
            background: #e0f2fe;
            color: #0277bd;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
        }
    

/* === solution-by-persona.html === */

        .persona-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .persona-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .persona-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue);
        }
        
        .persona-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .persona-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-hover));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin-right: 20px;
        }
        
        .persona-info h3 {
            margin: 0 0 5px 0;
            font-size: 20px;
            font-weight: 600;
            color: #111827;
        }
        
        .persona-info .role {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 500;
        }
        
        .persona-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .persona-usage {
            background: #f8fafc;
            border-radius: 8px;
            padding: 20px;
            border-left: 4px solid var(--primary-blue);
        }
        
        .persona-usage h4 {
            margin: 0 0 10px 0;
            color: #111827;
            font-size: 16px;
            font-weight: 600;
        }
        
        .persona-usage ul {
            margin: 0;
            padding-left: 20px;
            color: var(--text-secondary);
        }
        
        .persona-usage li {
            margin-bottom: 5px;
            line-height: 1.5;
        }
        
        .persona-stats {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .category-section {
            margin-bottom: 60px;
        }
        
        .category-title {
            font-size: 28px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .category-description {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.6;
        }
    

/* === contact.html === */

        /* Additional styles specific to this page */
        .contact-hero {
            background: #111827;
            color: white;
            padding: 120px 0 80px;
            margin-top: 70px;
            text-align: center;
        }

        .contact-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            color: white;
        }

        .contact-hero p {
            font-size: 1.5rem;
            color: #d1d5db;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-section {
            background: #f9fafb;
            padding: 100px 0;
        }

        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 60px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-header h2 {
            font-size: 2.5rem;
            color: #111827;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .contact-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .contact-form {
            display: grid;
            gap: 24px;
            margin-bottom: 40px;
        }

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

        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #111827;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.2s ease;
            background: white;
        }

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

        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: #dc2626;
        }

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

        .error-message {
            color: #dc2626;
            font-size: 14px;
            margin-top: 4px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .submit-btn {
            background: var(--primary-blue);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-top: 16px;
            position: relative;
        }

        .submit-btn:hover:not(:disabled) {
            background: var(--primary-blue-hover);
        }

        .submit-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }

        .submit-btn.loading {
            color: transparent;
        }

        .submit-btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .success-message {
            background: #d1fae5;
            border: 1px solid #10b981;
            color: #065f46;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 24px;
            display: none;
        }

        .success-message.show {
            display: block;
        }

        .error-alert {
            background: #fee2e2;
            border: 1px solid #ef4444;
            color: #991b1b;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 24px;
            display: none;
        }

        .error-alert.show {
            display: block;
        }

        .contact-info {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 2px solid #e5e7eb;
        }

        .contact-info h3 {
            color: #111827;
            margin-bottom: 24px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .contact-method {
            text-align: center;
            padding: 24px;
            background: #f9fafb;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }

        .contact-method h4 {
            color: var(--primary-blue);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .contact-method p {
            color: var(--text-muted);
            font-size: 14px;
        }

        .back-link {
            display: inline-block;
            margin-top: 24px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

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

        @media (max-width: 768px) {
            .contact-card {
                padding: 32px;
                margin: 0 16px;
            }
            
            .contact-hero h1 {
                font-size: 2.5rem;
            }

            .contact-header h2 {
                font-size: 2rem;
            }
        }
    

/* === agent-types.html === */

        /* Additional styles specific to this page */
        .types-hero {
            background: #111827;
            color: white;
            padding: 120px 0 80px;
            margin-top: 70px;
            text-align: center;
        }

        .types-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            color: white;
        }

        .types-hero p {
            font-size: 1.5rem;
            color: #d1d5db;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .agent-type-section {
            padding: 100px 0;
        }

        .agent-type-section:nth-child(even) {
            background: #f9fafb;
        }

        .type-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .type-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #111827;
        }

        .type-header p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .type-badge {
            display: inline-block;
            background: var(--primary-blue);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .type-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .type-content:nth-child(even) .type-info {
            order: 2;
        }

        .type-content:nth-child(even) .type-visual {
            order: 1;
        }

        .type-info h3 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #111827;
        }

        .type-info p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .capabilities-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .capabilities-list li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .capabilities-list li::before {
            content: '✓';
            background: #111827;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-weight: bold;
            font-size: 12px;
            flex-shrink: 0;
        }

        .tech-stack {
            background: #f9fafb;
            padding: 24px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-blue);
        }

        .tech-stack h4 {
            font-size: 16px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
        }

        .tech-stack p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        .type-visual {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: center;
        }

        .visual-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            background: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
        }

        .visual-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 16px;
        }

        .visual-description {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .examples-section {
            background: white;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .examples-section h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 20px;
        }

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

        .example-card {
            background: #f9fafb;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
        }

        .example-card h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .example-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        .comparison-section {
            background: #111827;
            color: white;
            padding: 100px 0;
        }

        .comparison-section h2 {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .table-header {
            background: var(--primary-blue);
            color: white;
            padding: 24px;
        }

        .table-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .table-header p {
            opacity: 0.9;
            font-size: 14px;
        }

        .table-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid #e5e7eb;
        }

        .table-row:last-child {
            border-bottom: none;
        }

        .table-cell {
            padding: 24px;
            display: flex;
            align-items: center;
        }

        .table-cell:nth-child(odd) {
            background: #f9fafb;
        }

        .table-cell h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }

        .table-cell p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
        }

        .types-cta {
            background: white;
            color: #111827;
            text-align: center;
            padding: 100px 0;
        }

        .types-cta h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #111827;
        }

        .types-cta p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .types-hero h1 {
                font-size: 2.5rem;
            }
            
            .type-header h2 {
                font-size: 2rem;
            }
            
            .type-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .type-content:nth-child(even) .type-info {
                order: 1;
            }
            
            .type-content:nth-child(even) .type-visual {
                order: 2;
            }
            
            .comparison-section h2 {
                font-size: 2rem;
            }
            
            .table-row {
                grid-template-columns: 1fr;
            }
            
            .table-cell:nth-child(3) {
                border-top: 1px solid #e5e7eb;
            }
            
            .types-cta h2 {
                font-size: 2rem;
            }
        }
    

/* === rcm-personas.html === */

        /* Page-specific styles that extend the main stylesheet */
        .page-header {
            background: var(--bg-dark);
            color: var(--text-white);
            padding: 120px 0 80px;
            margin-top: 70px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-white);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: 1.25rem;
            color: var(--border-medium);
            max-width: 800px;
            margin: 0 auto;
        }

        .search-container {
            margin: 40px 0;
            text-align: center;
        }

        .search-box {
            width: 100%;
            max-width: 500px;
            padding: 15px 20px;
            border: 2px solid var(--border-light);
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .search-box:focus {
            border-color: var(--primary-blue);
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
        }

        .nav-btn {
            background: var(--primary-blue);
            color: var(--text-white);
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
        }

        .nav-btn:hover {
            background: var(--primary-blue-hover);
            transform: translateY(-2px);
        }

        .nav-btn.active {
            background: var(--primary-gray);
        }

        .persona-section {
            margin-bottom: 40px;
            background: var(--bg-primary);
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .persona-section:hover {
            box-shadow: var(--shadow-lg);
        }

        .section-header {
            background: var(--bg-dark);
            color: var(--text-white);
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .section-header:hover {
            background: var(--bg-dark-secondary);
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .toggle-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: var(--text-white);
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .section-content {
            padding: 30px;
            display: none;
        }

        .section-content.active {
            display: block;
        }

        .persona-card {
            background: var(--bg-secondary);
            border-left: 4px solid var(--primary-blue);
            padding: 25px;
            margin-bottom: 25px;
            border-radius: 0 8px 8px 0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .persona-card:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }

        .persona-title {
            font-size: 1.4rem;
            color: var(--text-primary);
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.3;
        }

        .responsibilities {
            margin-bottom: 20px;
        }

        .responsibilities h4 {
            color: var(--accent-yellow);
            margin-bottom: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .responsibilities ul {
            list-style: none;
            padding-left: 0;
        }

        .responsibilities li {
            padding: 5px 0;
            padding-left: 25px;
            position: relative;
            color: var(--text-secondary);
        }

        .responsibilities li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
        }

        .outcomes {
            background: var(--bg-primary);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-green);
            box-shadow: var(--shadow-sm);
        }

        .outcomes h4 {
            color: var(--accent-green);
            margin-bottom: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .outcomes p {
            margin: 0;
            font-style: italic;
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            h1 {
                font-size: 2rem;
            }

            .nav-menu {
                flex-direction: column;
                align-items: center;
            }

            .section-header {
                padding: 20px;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .section-content {
                padding: 20px;
            }

            .persona-card {
                padding: 20px;
            }
        }

        .highlight {
            background-color: var(--accent-yellow);
            padding: 2px 4px;
            border-radius: 3px;
            color: var(--text-primary);
        }

        /* All-in-one RCM Assistant Section Styles */
        .single-feature {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--bg-white);
            border-radius: 20px;
            padding: 60px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
        }

        .single-feature-content {
            text-align: center;
        }

        .single-feature-icon {
            font-size: 4rem;
            margin-bottom: 30px;
            display: block;
        }

        .single-feature h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .single-feature p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .feature-highlights {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin: 50px 0;
            text-align: left;
        }

        .highlight-item {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary-blue);
        }

        .highlight-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlight-item p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .cta-section {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-section .hero-cta,
        .cta-section .hero-cta-blue {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-section .hero-cta {
            background: var(--primary-blue);
            color: var(--text-white);
        }

        .cta-section .hero-cta:hover {
            background: var(--primary-blue-dark);
            transform: translateY(-2px);
        }

        .cta-section .hero-cta-blue {
            background: var(--accent-yellow);
            color: var(--text-primary);
        }

        .cta-section .hero-cta-blue:hover {
            background: var(--accent-yellow-dark);
            transform: translateY(-2px);
        }

        /* Page-Specific Section Header Overrides */
        .rcm-agents-page .section-header,
        .multi-speciality-page .section-header {
            text-align: center !important;
            margin-bottom: 80px !important;
            background: transparent !important;
            color: inherit !important;
            padding: 0 !important;
            cursor: default !important;
            display: block !important;
            justify-content: unset !important;
            align-items: unset !important;
            transition: none !important;
        }

        .rcm-agents-page .section-header:hover,
        .multi-speciality-page .section-header:hover {
            background: transparent !important;
        }

        .rcm-agents-page .section-header h2,
        .multi-speciality-page .section-header h2 {
            font-size: 3rem !important;
            font-weight: 700 !important;
            margin-bottom: 24px !important;
            color: var(--text-primary) !important;
            text-shadow: none !important;
        }

        .rcm-agents-page .section-header p,
        .multi-speciality-page .section-header p {
            font-size: 1.25rem !important;
            color: var(--text-muted) !important;
            max-width: 600px !important;
            margin: 0 auto !important;
        }

        /* Responsive Design for All-in-one Section */
        @media (max-width: 768px) {
            .single-feature {
                padding: 40px 30px;
                margin: 0 20px;
            }

            .single-feature h3 {
                font-size: 2rem;
            }

            .single-feature p {
                font-size: 1.1rem;
            }

            .highlight-item {
                padding: 20px;
            }

            .highlight-item h4 {
                font-size: 1.2rem;
            }

            .cta-section {
                flex-direction: column;
                align-items: center;
            }

            .cta-section .hero-cta,
            .cta-section .hero-cta-blue {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .rcm-agents-page .section-header h2,
            .multi-speciality-page .section-header h2 {
                font-size: 2rem !important;
            }
        }
    
