        /* CSS Variables for Design System */
        :root {
            /* Primary Brand Colors - Enhanced Harmony */
            --primary-brand: #1a5276;
            /* Your main brand color - rich teal-blue */
            --brand-dark: #0e2a44;
            /* 60% darker for backgrounds */
            --brand-medium: #2c82c9;
            /* 30% lighter for accents */
            --brand-light: #4fb3d9;
            /* 60% lighter for highlights */
            --brand-pale: rgb(243, 243, 243);
            /* Subtle backgrounds */

            /* Complementary Teal Family - Better harmony */
            --teal-primary: #2ec4b6;
            /* Keep but adjust */
            --teal-dark: #249c90;
            /* More cohesive dark teal */
            --teal-light: #4fd1c5;
            /* Brighter for highlights */
            --teal-accent: #1ab394;
            /* Vibrant accent teal */

            /* Navy Family - Enhanced contrast */
            --navy-primary: #0a2342;
            /* Keep as is */
            --navy-dark: #05182b;
            /* Slightly darker */
            --navy-light: #1a365d;
            /* Keep as is */
            --navy-muted: rgba(10, 35, 66, 0.9);
            /* For transparent effects */

            /* Success/Error/Warning - More medical-friendly */
            --success-green: #27ae60;
            /* Clean green for approvals */
            --warning-orange: #f39c12;
            /* Softer orange */
            --error-red: #e74c3c;
            /* Less harsh red */
            --info-blue: #3498db;
            /* Trust-building blue */

            /* Gray Scale - Better contrast ratios */
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;

            /* Functional Colors */
            --white: #ffffff;
            --black: #0a0a0a;
            --transparent: transparent;

            /* Status Indicators */
            --status-critical: #e63946;
            /* Denied claims, emergencies */
            --status-high: #ff9f1c;
            /* Attention needed */
            --status-medium: #fbbf24;
            /* Warnings */
            --status-low: #10b981;
            /* Good/completed */

            /* Chart/Data Visualization Colors */
            --chart-1: #2ec4b6;
            /* Primary metric */
            --chart-2: #3498db;
            /* Secondary metric */
            --chart-3: #9b59b6;
            /* Tertiary metric */
            --chart-4: #e74c3c;
            /* Negative metric */
            --chart-5: #f39c12;
            /* Warning metric */

            /* Gradient Definitions */
            --gradient-primary: linear-gradient(135deg, var(--primary-brand) 0%, var(--brand-medium) 100%);
            --gradient-teal: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-accent) 100%);
            --gradient-navy: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
            --gradient-success: linear-gradient(135deg, var(--success-green) 0%, #2ecc71 100%);

            /* Shadow System - Enhanced with color tones */
            --shadow-sm: 0 1px 3px rgba(10, 35, 66, 0.12);
            --shadow-md: 0 4px 6px -1px rgba(10, 35, 66, 0.1), 0 2px 4px -1px rgba(10, 35, 66, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(10, 35, 66, 0.1), 0 4px 6px -2px rgba(10, 35, 66, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(10, 35, 66, 0.1), 0 10px 10px -5px rgba(10, 35, 66, 0.04);
            --shadow-teal: 0 4px 12px rgba(46, 196, 182, 0.15);
            --shadow-navy: 0 4px 12px rgba(10, 35, 66, 0.15);

            /* Border Colors */
            --border-light: var(--gray-200);
            --border-medium: var(--gray-300);
            --border-dark: var(--gray-400);
            --border-brand: var(--brand-light);
            --border-teal: rgba(46, 196, 182, 0.3);

            /* Background Tints */
            --bg-primary: var(--white);
            --bg-secondary: var(--gray-50);
            --bg-tertiary: var(--gray-100);
            --bg-brand-subtle: rgba(26, 82, 118, 0.05);
            --bg-teal-subtle: rgba(46, 196, 182, 0.08);

            /* Text Colors */
            --text-primary: var(--gray-900);
            --text-secondary: var(--gray-700);
            --text-tertiary: var(--gray-600);
            --text-muted: var(--gray-500);
            --text-brand: var(--primary-brand);
            --text-teal: var(--teal-primary);
            --text-on-dark: var(--white);

            /* Interactive States */
            --hover-bg: rgba(26, 82, 118, 0.05);
            --active-bg: rgba(26, 82, 118, 0.1);
            --focus-ring: rgba(26, 82, 118, 0.4);
            --disabled-bg: var(--gray-100);
            --disabled-text: var(--gray-400);

            /* Animation Timings */
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

            /* Border Radius */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-2xl: 24px;
            --radius-full: 9999px;

            /* Spacing Scale */
            --space-xs: 0.25rem;
            /* 4px */
            --space-sm: 0.5rem;
            /* 8px */
            --space-md: 1rem;
            /* 16px */
            --space-lg: 1.5rem;
            /* 24px */
            --space-xl: 2rem;
            /* 32px */
            --space-2xl: 3rem;
            /* 48px */

            /* Typography Scale */
            --font-xs: 0.75rem;
            /* 12px */
            --font-sm: 0.875rem;
            /* 14px */
            --font-base: 1rem;
            /* 16px */
            --font-lg: 1.125rem;
            /* 18px */
            --font-xl: 1.25rem;
            /* 20px */
            --font-2xl: 1.5rem;
            /* 24px */
            --font-3xl: 1.875rem;
            /* 30px */
            --font-4xl: 2.25rem;
            /* 36px */
            --font-5xl: 3rem;
            /* 48px */
        }

        /* Base Styles */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: var(--white);
        }

        /* Dark section text fixes - ensure visibility on dark backgrounds */
        .dark-bg,
        section.dark,
        section.dark-section {
            color: var(--white);
        }

        .dark-bg p,
        section.dark p,
        section.dark-section p {
            color: var(--gray-300);
        }

        .dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4,
        section.dark h1, section.dark h2, section.dark h3, section.dark h4 {
            color: var(--white);
        }

        /* Light section text - ensure contrast */
        .light-bg,
        section.light {
            color: var(--gray-800);
        }

        .light-bg p,
        section.light p {
            color: var(--gray-700);
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--navy-primary);
            font-weight: 700;
            line-height: 1.3;
        }

        p {
            color: var(--gray-700);
            line-height: 1.7;
        }

        a {
            color: var(--teal-primary);
            text-decoration: none;
            transition: var(--transition-base);
        }

        a:hover {
            color: var(--teal-dark);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Add to CSS */
        /* Optimize animations and transitions */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Optimize images */
        img {
            content-visibility: auto;
        }

        /* Critical CSS loading indicator */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--navy-primary);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loading-screen.hidden {
            animation: fadeOut 0.5s forwards;
        }

        /* Skip to Main Content Link for Accessibility */
        .skip-to-content {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 9999;
            padding: 1rem;
            background: var(--primary-green);
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .skip-to-content:focus {
            left: 50%;
            transform: translateX(-50%);
        }


        /* Hero Section */
        /* ===== HERO SECTION ===== */
        .vsl-hero {
            position: relative;
            background: var(--gradient-navy);
            /* Using your gradient variable */
            color: var(--white);
            min-height: 95vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 3rem 0;
        }

        .vsl-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(46, 196, 182, 0.1) 0%, transparent 50%),
                /* Using --teal-primary */
                radial-gradient(circle at 80% 20%, rgba(44, 130, 201, 0.1) 0%, transparent 50%);
            /* Using --brand-medium */
            z-index: 1;
        }

        .vsl-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .content-column {
            max-width: 600px;
        }

        .video-container {
            position: relative;
        }

        /* Badge Styles */
        .vsl-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--bg-teal-subtle);
            border: 1px solid var(--border-teal);
            color: var(--teal-primary);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(4px);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        /* Headline Styles */
        .vsl-title {
            font-size: clamp(3rem, 3vw, 4rem);
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--white);
        }







        .highlight,
        .HIGHLIGHT {
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: linear-gradient(45deg, rgba(46, 196, 182, 0.3), transparent 80%);
            z-index: -1;
        }

        .HIGHLIGHT {
            color: var(--white);
        }

        .HIGHLIGHT::after {
            background: linear-gradient(45deg, rgba(44, 130, 201, 0.3), transparent 80%);
        }

        .vsl-subhead {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--gray-300);
            margin: 1.5rem 0 2rem;
            max-width: 550px;
            font-weight: 400;
        }

        .vsl-subhead strong {
            color: var(--white);
            font-weight: 600;
        }

        /* Stats Styles */
        .social-proof-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0 2.5rem;
        }

        .stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 12px;
            /* Matching your root's design system */
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(46, 196, 182, 0.1);
            border-color: var(--border-teal);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--teal-primary);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 400;
        }

        /* CTA Styles */
        .cta-section {
            margin-top: 2rem;
        }

        .primary-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-accent) 100%);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-teal);
            width: fit-content;
        }

        .primary-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 196, 182, 0.5);
            background: linear-gradient(135deg, var(--teal-accent) 0%, var(--teal-primary) 100%);
        }

        .cta-icon {
            font-size: 1.4rem;
        }

        .primary-cta div {
            text-align: left;
        }

        .primary-cta div span {
            display: block;
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.9;
            margin-top: 0.2rem;
        }

        .risk-reversal {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1rem;
            color: var(--teal-light);
            font-size: 0.95rem;
        }

        .risk-reversal i {
            font-size: 1.1rem;
            color: var(--success-green);
        }



        .secondary-action {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            background: rgba(255, 255, 255, 0.05);
        }

        .secondary-action:hover {
            color: var(--white);
            background: var(--hover-bg);
            transform: translateY(-2px);
            border-color: var(--border-teal);
        }

        /* Video Container Styles */
        .video-badge {
            background: var(--bg-teal-subtle);
            border: 1px solid var(--border-teal);
            color: var(--teal-primary);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            width: fit-content;
            backdrop-filter: blur(4px);
        }

        .video-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            /* Matching your root's design system */
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--border-teal);
        }

        .video-thumb {
            position: relative;
            width: 100%;
            height: 300px;
            background: linear-gradient(45deg, var(--gray-800), var(--gray-700));
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
        }

        .video-thumb::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
        }

        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .video-thumb:hover img {
            transform: scale(1.05);
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-thumb:hover .play-overlay {
            opacity: 1;
        }

        .play-button {
            width: 70px;
            height: 70px;
            background: rgba(46, 196, 182, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            border: 2px solid var(--white);
            box-shadow: 0 0 20px rgba(46, 196, 182, 0.5);
        }

        .play-button:hover {
            transform: scale(1.1);
            background: rgba(46, 196, 182, 1);
        }

        .video-content {
            padding: 1.5rem;
        }

        .video-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

.video-description {
            color: var(--gray-600);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .video-stat-label {
            font-size: 0.85rem;
            color: var(--gray-600);
        }

        .video-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            text-align: center;
        }

        .video-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--teal-primary);
        }

.video-stat-label {
            font-size: 0.85rem;
            color: var(--gray-600);
        }

        /* Testimonial Preview Styles */
        .testimonial-preview {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            /* Matching your root's design system */
            padding: 1.5rem;
            margin-top: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-preview:hover {
            border-color: var(--border-teal);
            background: rgba(46, 196, 182, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--white);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 3rem;
            color: rgba(46, 196, 182, 0.3);
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--teal-primary);
        }

        .author-info h4 {
            color: var(--white);
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--gray-600);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }

        /* Trusted Brands Section - Enhanced */
        .trusted-brands-section {
            background: var(--gray-50);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .trusted-brands-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .trusted-brands-header h3 {
            color: var(--navy-primary);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .trusted-brands-header p {
            color: var(--gray-600);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .brands-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            overflow: hidden;
        }

        .brands-slider-track {
            display: flex;
            gap: 3rem;
            animation: slideLeft 40s linear infinite;
            width: max-content;
        }

        .brands-slider-track:hover {
            animation-play-state: paused;
        }

        .brand-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            min-width: 150px;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--gray-200);
        }

        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--teal-primary);
        }

        .brand-logo {
            width: 100px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 8px;
            padding: 0.5rem;
        }

        .brand-logo i {
            font-size: 2rem;
            color: var(--teal-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .brand-item:hover .brand-logo i {
            color: var(--teal-accent);
            transform: scale(1.1);
        }

        .brand-name {
            font-size: 0.875rem;
            color: var(--gray-600);
            font-weight: 500;
            text-align: center;
        }

        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-150px * 10 - 3rem * 10));
            }
        }

        .brands-slider-track.secondary {
            animation: slideRight 40s linear infinite;
            animation-delay: -20s;
        }

        @keyframes slideRight {
            0% {
                transform: translateX(calc(-150px * 10 - 3rem * 10));
            }

            100% {
                transform: translateX(0);
            }
        }

        /* Video Modal Styles */
        .vsl-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .vsl-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .vsl-modal-content {
            background: var(--gray-800);
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            overflow: hidden;
            position: relative;
            animation: scaleIn 0.3s ease;
            border: 1px solid var(--border-teal);
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .vsl-modal-header {
            padding: 1.5rem;
            background: var(--gray-900);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-teal);
        }

        .vsl-modal-header h3 {
            color: var(--white);
            margin: 0;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .close-vsl-modal {
            background: none;
            border: none;
            color: var(--gray-500);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: color 0.3s ease;
            line-height: 1;
        }

        .close-vsl-modal:hover {
            color: var(--teal-primary);
        }

        .vsl-video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
        }

        .vsl-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .vsl-modal-footer {
            padding: 1.5rem;
            background: var(--gray-900);
            text-align: center;
            border-top: 1px solid var(--border-teal);
        }

        .vsl-modal-footer p {
            color: var(--gray-300);
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .vsl-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .content-column {
                margin: 0 auto;
                max-width: 100%;
            }

            .social-proof-stats {
                grid-template-columns: repeat(3, 1fr);
                justify-content: center;
            }

            .quick-actions {
                flex-direction: row;
                /* This makes buttons align horizontally */
                justify-content: center;
                /* This centers them horizontally */
                align-items: center;
                /* Optional: centers them vertically if heights differ */
            }

            .vsl-modal-content {
                max-width: 95%;
            }
        }

        /* ===== QUICK ACTIONS - HORIZONTAL LAYOUT ===== */
        .quick-actions {
            display: flex;
            flex-direction: row;
            /* Changed from column to row */
            flex-wrap: wrap;
            /* Allows wrapping on smaller screens */
            justify-content: center;
            /* Centers buttons horizontally */
            align-items: center;
            /* Centers buttons vertically */
            gap: 15px;
            /* Space between buttons */
            margin-top: 1.5rem;
            width: 100%;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(183, 173, 173, 0.1);
            color: var(--teal-accent);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            backdrop-filter: blur(4px);
            min-width: 160px;
            /* Minimum width for each button */
            justify-content: center;
            /* Center content in button */
        }

        .action-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            border-color: var(--primary-light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .action-btn i {
            font-size: 1.1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .quick-actions {
                gap: 10px;
            }

            .action-btn {
                min-width: 140px;
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .quick-actions {
                flex-wrap: wrap;
                /* Allow wrapping on very small screens */
                justify-content: space-between;
                /* Better use of space */
            }

            .action-btn {
                flex: 1;
                /* Makes buttons take equal width */
                min-width: calc(50% - 5px);
                /* Two buttons per row on mobile */
                margin-bottom: 10px;
            }
        }

        @media (max-width: 768px) {
            .vsl-hero {
                padding: 2rem 0;
                min-height: 85vh;
            }

            .social-proof-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-thumb {
                height: 250px;
            }

            .brands-slider-container {
                padding: 0 1rem;
            }

            .brand-item {
                min-width: 120px;
                padding: 1rem;
            }

            .brand-logo {
                width: 80px;
                height: 50px;
            }

            .vsl-title {
                font-size: 2rem;
            }

            .vsl-subhead {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .social-proof-stats {
                grid-template-columns: 1fr;
            }

            .quick-actions {
                flex-direction: row;
                /* This makes buttons align horizontally */
                justify-content: center;
                /* This centers them horizontally */
                align-items: center;
                /* Optional: centers them vertically if heights differ */
            }

            .video-stats {
                grid-template-columns: 1fr;
            }

            .video-thumb {
                height: 200px;
            }

            .vsl-title {
                font-size: 1.8rem;
            }

            .vsl-subhead {
                font-size: 1rem;
            }

            .primary-cta {
                width: 100%;
                justify-content: center;
                padding: 0.875rem 1.5rem;
            }

            .brands-slider-container {
                padding: 0 0.5rem;
            }
        }

        /* ===== TRUSTED BRANDS SLIDER ===== */
        .trusted-brands-section {
            background: #f8fafc;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .trusted-brands-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .trusted-brands-header h3 {
            color: #1e293b;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .trusted-brands-header p {
            color: #64748b;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .brands-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            overflow: hidden;
        }

        .brands-slider-track {
            display: flex;
            gap: 3rem;
            animation: slideLeft 40s linear infinite;
            width: max-content;
        }

        .brands-slider-track:hover {
            animation-play-state: paused;
        }

        .brand-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            min-width: 150px;
            padding: 1.5rem;
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: #10b981;
        }

        .brand-logo {
            width: 100px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 0.5rem;
            padding: 0.5rem;
        }

        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .brand-item:hover .brand-logo img {
            filter: grayscale(0);
            opacity: 1;
        }

        .brand-name {
            font-size: 0.875rem;
            color: #475569;
            font-weight: 500;
            text-align: center;
        }

        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-150px * 10 - 3rem * 10));
            }
        }

        .brands-slider-track.secondary {
            animation: slideRight 40s linear infinite;
            animation-delay: -20s;
        }

        @keyframes slideRight {
            0% {
                transform: translateX(calc(-150px * 10 - 3rem * 10));
            }

            100% {
                transform: translateX(0);
            }
        }

        /* ===== VSL MODAL ===== */
        .vsl-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .vsl-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .vsl-modal-content {
            background: #1e293b;
            border-radius: 1rem;
            max-width: 900px;
            width: 100%;
            overflow: hidden;
            position: relative;
            animation: scaleIn 0.3s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .vsl-modal-header {
            padding: 1.5rem;
            background: #0f172a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .vsl-modal-header h3 {
            color: white;
            margin: 0;
            font-size: 1.25rem;
        }

        .close-vsl-modal {
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: color 0.3s ease;
        }

        .close-vsl-modal:hover {
            color: white;
        }

        .vsl-video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
        }

        .vsl-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .vsl-modal-footer {
            padding: 1.5rem;
            background: #0f172a;
            text-align: center;
        }

        .vsl-modal-footer p {
            color: #cbd5e1;
            margin-bottom: 1rem;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .vsl-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .vsl-content {
                max-width: 100%;
                text-align: center;
            }

            .vsl-stats {
                justify-content: center;
            }

            .vsl-buttons {
                justify-content: center;
            }

            .vsl-video-container {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .vsl-title {
                font-size: 2rem;
            }

            .vsl-subtitle {
                font-size: 1.125rem;
            }

            .vsl-stats {
                gap: 1.5rem;
            }

            .vsl-stat-number {
                font-size: 2rem;
            }

            .vsl-buttons {
                flex-direction: column;
                align-items: center;
            }

            .brands-slider-container {
                padding: 0 1rem;
            }

            .brand-item {
                min-width: 120px;
                padding: 1rem;
            }

            .brand-logo {
                width: 80px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .vsl-hero {
                padding: 1rem 0;
            }

            .vsl-container {
                padding: 0 1rem;
            }

            .vsl-title {
                font-size: 1.75rem;
            }

            .vsl-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .video-thumbnail {
                height: 300px;
            }
        }

        /* ===== ENHANCED ANIMATIONS ===== */
        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

        .fade-in.delay-1 {
            animation-delay: 0.2s;
        }

        .fade-in.delay-2 {
            animation-delay: 0.4s;
        }

        .fade-in.delay-3 {
            animation-delay: 0.6s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Section */
        /* Services Section */
        .services {
            padding: 6rem 1rem;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    var(--brand-light) 50%,
                    transparent 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: var(--font-4xl);
            color: var(--navy-primary);
            margin-bottom: var(--space-md);
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-teal);
            border-radius: var(--radius-full);
        }

        .section-title p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            font-size: var(--font-lg);
            line-height: 1.6;
        }

        /* Services Grid */
        /* Services Section - Fixed Icons */
        .services {
            padding: 6rem 1rem;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    var(--brand-light) 50%,
                    transparent 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: var(--font-4xl);
            color: var(--navy-primary);
            margin-bottom: var(--space-md);
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-teal);
            border-radius: var(--radius-full);
        }

        .section-title p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            font-size: var(--font-lg);
            line-height: 1.6;
        }

        /* Services Grid */
        .services {
            padding: 6rem 1rem;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    var(--brand-light) 50%,
                    transparent 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: var(--font-4xl);
            color: var(--navy-primary);
            margin-bottom: var(--space-md);
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-teal);
            border-radius: var(--radius-full);
        }

        .section-title p {
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            font-size: var(--font-lg);
            line-height: 1.6;
        }

        /* Main CTA Button */
        .section-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .main-cta {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: 1rem 2.5rem;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            transition: all var(--transition-base);
            border: none;
            cursor: pointer;
            font-size: var(--font-lg);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .main-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .main-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(26, 82, 118, 0.3);
        }

        .main-cta:hover::before {
            left: 100%;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--bg-primary);
            border-radius: var(--radius-xl);
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        /* Color-coded top borders */
        .service-card:nth-child(1)::before {
            background: var(--gradient-primary);
        }

        .service-card:nth-child(2)::before {
            background: var(--gradient-teal);
        }

        .service-card:nth-child(3)::before {
            background: var(--gradient-navy);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--border-brand);
        }

        /* Service Icons */
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
            font-size: 2rem;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
            opacity: 0.9;
        }

        /* Different icon backgrounds for each card */
        .service-card:nth-child(1) .service-icon {
            background: linear-gradient(135deg, var(--primary-brand), var(--brand-medium));
            color: var(--white);
            box-shadow: 0 10px 25px rgba(26, 82, 118, 0.2);
        }

        .service-card:nth-child(2) .service-icon {
            background: linear-gradient(135deg, var(--teal-primary), var(--teal-accent));
            color: var(--white);
            box-shadow: 0 10px 25px rgba(46, 196, 182, 0.2);
        }

        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
            color: var(--white);
            box-shadow: 0 10px 25px rgba(10, 35, 66, 0.2);
            opacity: 0.95;
        }

        /* CLICKABLE H3 HEADINGS */
        .service-card h3 {
            margin-bottom: var(--space-md);
            font-size: var(--font-2xl);
            font-weight: 600;
            line-height: 1.3;
            position: relative;
        }

        /* Regular cards h3 links */
        .service-card:not(:nth-child(4)) h3 a {
            color: var(--navy-primary);
            text-decoration: none;
            display: inline-block;
            padding: 0.25rem 0;
            position: relative;
            transition: all var(--transition-base);
        }

        /* Hover effect for h3 links */
        .service-card:not(:nth-child(4)) h3 a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-teal);
            transition: width var(--transition-base);
        }

        .service-card:not(:nth-child(4)) h3 a:hover {
            color: var(--teal-primary);
            transform: translateX(5px);
        }

        .service-card:not(:nth-child(4)) h3 a:hover::after {
            width: 100%;
        }

        /* Arrow icon for clickable headings */
        .service-card:not(:nth-child(4)) h3 a::before {
            content: '→';
            position: absolute;
            right: -25px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all var(--transition-base);
            color: var(--teal-primary);
        }

        .service-card:not(:nth-child(4)) h3 a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        /* Add decorative elements to icons */
        .service-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: inherit;
            border-radius: inherit;
            opacity: 0.3;
            z-index: -1;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: inherit;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card p {
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
            line-height: 1.6;
            flex-grow: 1;
        }

        /* Service List Items */
        .service-list {
            list-style: none;
            margin: var(--space-lg) 0 0 0;
            padding: 0;
            text-align: left;
        }

        .service-list li {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-sm);
            color: var(--text-secondary);
            font-size: var(--font-sm);
            padding: 0.5rem 0;
        }

        .service-list li i {
            color: var(--teal-primary);
            font-size: 0.875rem;
            flex-shrink: 0;
        }

        /* Featured 4th Card - Special Styling */
        .service-card:nth-child(4) {
            grid-column: span 3;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            text-align: left;
            padding: 3rem;
            background: var(--gradient-navy);
            color: var(--white);
            align-items: center;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .service-card:nth-child(4)::before {
            height: 4px;
            background: var(--teal-primary);
        }

        /* Add decorative background pattern */
        .service-card:nth-child(4)::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(46, 196, 182, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 82, 118, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .service-card:nth-child(4)>* {
            position: relative;
            z-index: 1;
        }

        /* Featured card icon */
        .service-card:nth-child(4) .service-icon {
            margin: 0;
            align-self: center;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid var(--teal-primary);
            box-shadow:
                0 10px 30px rgba(46, 196, 182, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
            color: var(--teal-primary);
            font-size: 2.5rem;
        }

        /* Featured card h3 link styling */
        .service-card:nth-child(4) h3 a {
            color: var(--white);
            text-decoration: none;
            display: inline-block;
            padding: 0.25rem 0;
            position: relative;
            transition: all var(--transition-base);
        }

        .service-card:nth-child(4) h3 a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--teal-primary);
            transition: width var(--transition-base);
        }

        .service-card:nth-child(4) h3 a:hover {
            color: var(--teal-light);
            transform: translateX(5px);
        }

        .service-card:nth-child(4) h3 a:hover::after {
            width: 100%;
        }

        /* Arrow icon for featured card heading */
        .service-card:nth-child(4) h3 a::before {
            content: '→';
            position: absolute;
            right: -25px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all var(--transition-base);
            color: var(--teal-light);
        }

        .service-card:nth-child(4) h3 a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .service-card:nth-child(4) h3 {
            font-size: var(--font-3xl);
            margin-bottom: var(--space-sm);
        }

        .service-card:nth-child(4) p {
            color: rgba(255, 255, 255, 0.9);
            font-size: var(--font-lg);
            margin-bottom: var(--space-xl);
        }

        /* CTA Button in Featured Card */
        .service-featured-cta {
            margin-top: var(--space-lg);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: 0.875rem 2rem;
            background: var(--gradient-teal);
            color: var(--white);
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            transition: all var(--transition-base);
            border: none;
            cursor: pointer;
            font-size: var(--font-base);
            box-shadow: var(--shadow-teal);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(46, 196, 182, 0.3);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Additional Service Features */
        .service-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            background: var(--bg-primary);
            padding: 1.5rem 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            border: 1px solid var(--border-light);
            min-width: 280px;
        }

        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal-primary);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-teal);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            color: var(--navy-primary);
            font-size: var(--font-base);
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            color: var(--text-secondary);
            font-size: var(--font-sm);
        }

        /* Tooltip for clickable headings */
        .service-card h3 a {
            position: relative;
            cursor: pointer;
        }

        .service-card h3 a:hover::after {
            content: 'Click to learn more';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--navy-primary);
            color: var(--white);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            white-space: nowrap;
            z-index: 10;
        }

        .service-card h3 a:hover::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid var(--navy-primary);
            z-index: 10;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card:nth-child(3) {
                grid-column: span 1;
            }

            .service-card:nth-child(4) {
                grid-column: span 2;
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .service-card:nth-child(4) .service-icon {
                margin: 0 auto;
            }

            .service-features {
                gap: 1.5rem;
            }

            .feature-item {
                min-width: 240px;
            }
        }

        @media (max-width: 768px) {
            .services {
                padding: 4rem 1rem;
            }

            .section-title h2 {
                font-size: var(--font-3xl);
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-card:nth-child(4) {
                grid-column: span 1;
                padding: 2.5rem 1.5rem;
            }

            .service-card:nth-child(4) h3 {
                font-size: var(--font-2xl);
            }

            .main-cta {
                padding: 0.875rem 2rem;
                font-size: var(--font-base);
            }

            .service-features {
                flex-direction: column;
                align-items: center;
            }

            .feature-item {
                width: 100%;
                max-width: 400px;
            }
        }

        /* Benefits Section */
        .benefits {
            padding: 6rem 1rem;
            background: var(--white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--light-gray);
            border-radius: var(--radius-lg);
            transition: all var(--transition-base);
        }

        .benefit-item:hover {
            background: var(--white);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .benefit-icon {
            min-width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Testimonials with Carousel */
        .testimonials {
            padding: 6rem 1rem;
            background: var(--gradient-navy);
            color: var(--white);
            position: relative;
        }

        .testimonial-carousel {
            max-width: 1000px;
            margin: 3rem auto 0;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            display: flex;
            transition: transform var(--transition-slow);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            min-width: 100%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .rating {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .carousel-btn.active {
            background: var(--brand-medium);
            transform: scale(1.2);
        }

        /* Specialties Section */
        .specialty-section {
            padding: 6rem 1rem;
            background: var(--light-gray);
        }

        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .specialty-item {
            background: var(--white);
            border: 2px solid var(--medium-gray);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            font-weight: 500;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .specialty-item:hover {
            background: var(--brand-medium);
            border-color: var(--brand-medium);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Pricing Section */
        .pricing-comparison {
            padding: 6rem 1rem;
            background: var(--white);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .comparison-table th {
            background: var(--navy-blue);
            color: white;
            padding: 1.25rem;
            text-align: left;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1.25rem;
            border-bottom: 1px solid var(--medium-gray);
        }

        .comparison-table tr:nth-child(even) {
            background: var(--light-gray);
        }

        .comparison-table tr:hover {
            background: rgba(16, 185, 129, 0.05);
        }

        /* Savings Calculator */
        .savings-calculator {
            background: var(--light-gray);
            border-radius: var(--radius-xl);
            padding: 3rem;
            margin-top: 4rem;
            box-shadow: var(--shadow-md);
        }

        .calculator-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 500;
            color: var(--navy-blue);
        }

        .form-group input {
            padding: 0.75rem 1rem;
            border: 2px solid var(--medium-gray);
            border-radius: var(--radius-md);
            font-size: 1rem;
            transition: border-color var(--transition-fast);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .calculator-result {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            border-radius: var(--radius-lg);
            text-align: center;
            display: none;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 1rem;
            background: var(--gradient-primary);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Form Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal-content {
            background: white;
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--shadow-xl);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-gray);
            padding: 0.5rem;
        }

        /* Footer */
        /* Footer - Updated to use design system variables */
        .footer {
            background: var(--navy-primary);
            color: var(--gray-200);
            padding: clamp(60px, 8vw, 100px) 0 50px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .footer-description {
            color: var(--gray-200);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: var(--font-xs);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-teal);
            transition: var(--transition-base);
        }

        .badge:hover {
            background: rgba(46, 196, 182, 0.15);
            transform: translateY(-2px);
        }

        .badge i {
            color: var(--teal-primary);
        }

        .footer-links h4 {
            color: var(--white);
            font-size: var(--font-xl);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-links h4:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--gradient-teal);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: var(--gray-300);
            text-decoration: none;
            transition: var(--transition-base);
            display: inline-block;
            padding: 5px 0;
            font-weight: 400;
            outline: none;
            position: relative;
        }

        .footer-links ul li a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            color: var(--teal-primary);
            transition: var(--transition-base);
        }

        .footer-links ul li a:hover,
        .footer-links ul li a:focus {
            color: var(--white);
            padding-left: 8px;
        }

        .footer-links ul li a:hover::before,
        .footer-links ul li a:focus::before {
            opacity: 1;
            left: 0;
        }

        .footer-links ul li i {
            width: 20px;
            color: var(--teal-primary);
            margin-right: 8px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--navy-light);
            font-size: var(--font-sm);
            color: var(--gray-300);
            line-height: 1.6;
        }

        .copyright a {
            color: var(--teal-light);
            text-decoration: none;
            transition: var(--transition-base);
            border-bottom: 1px solid transparent;
        }

        .copyright a:hover {
            color: var(--teal-primary);
            border-bottom-color: var(--teal-primary);
        }

        /* Social Links in Footer */
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            text-decoration: none;
            transition: var(--transition-base);
            border: 1px solid transparent;
        }

        .social-link:hover {
            background: var(--teal-primary);
            color: var(--white);
            transform: translateY(-3px);
            border-color: var(--teal-primary);
            box-shadow: var(--shadow-teal);
        }

        /* Newsletter Signup in Footer */
        .newsletter-form {
            margin-top: 20px;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-teal);
            border-radius: var(--radius-md);
            color: var(--white);
            font-size: var(--font-sm);
            margin-bottom: 10px;
            transition: var(--transition-base);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--teal-primary);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
        }

        .newsletter-input::placeholder {
            color: var(--gray-500);
        }

        .newsletter-btn {
            width: 100%;
            padding: 12px 16px;
            background: var(--gradient-teal);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-teal);
        }

        /* Contact Info in Footer */
        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--gray-300);
        }

        .contact-item i {
            color: var(--teal-primary);
            margin-top: 3px;
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer {
                padding: 50px 0 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-links h4 {
                font-size: var(--font-lg);
            }

            .social-link {
                width: 36px;
                height: 36px;
            }
        }

        /* Decorative Elements for Footer */
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    var(--teal-primary) 50%,
                    transparent 100%);
        }

        /* Footer Bottom Section */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid var(--navy-light);
            flex-wrap: wrap;
            gap: 20px;
        }

        .payment-methods {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .payment-icon {
            width: 40px;
            height: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            font-size: 18px;
        }

        /* Accessibility Improvements */
        .footer-links ul li a:focus-visible {
            outline: 2px solid var(--teal-primary);
            outline-offset: 2px;
            background: rgba(46, 196, 182, 0.1);
        }

        .social-link:focus-visible {
            outline: 2px solid var(--teal-primary);
            outline-offset: 2px;
            background: var(--teal-primary);
            color: var(--white);
        }

        /* Print Styles for Footer */
        @media print {
            .footer {
                background: var(--white) !important;
                color: var(--gray-900) !important;
                border-top: 2px solid var(--border-dark);
            }

            .footer a {
                color: var(--gray-900) !important;
            }

            .social-link,
            .newsletter-form {
                display: none;
            }
        }


        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-base);
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.75rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 280px;
                background: white;
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                box-shadow: var(--shadow-xl);
                transition: right var(--transition-base);
                z-index: 1000;
            }

            .nav-links.active {
                right: 0;
            }

            .hero {
                padding: 8rem 1rem 4rem;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .specialties-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .calculator-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.875rem;
            }

            .section-title h2 {
                font-size: 1.875rem;
            }

            .stat-item {
                min-width: 140px;
                padding: 1rem;
            }

            .specialties-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Print Styles */
        @media print {

            .header,
            .cta-section,
            .modal,
            .back-to-top,
            .menu-toggle {
                display: none !important;
            }

            body {
                color: black;
                background: white;
            }

            a {
                color: black;
                text-decoration: underline;
            }
        }

        /* Add to CSS */
        /* Focus styles */
        :focus-visible {
            outline: 3px solid var(--teal-primary);
            outline-offset: 2px;
        }

        /* Screen reader only class */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* High contrast mode */
        @media (prefers-contrast: high) {
            :root {
                --teal-primary: #00a693;
                --navy-primary: #000a1a;
            }
        }

        /* Add to CSS */
        /* Dark mode variables */

        /* Dark mode toggle button */


        /* Add to CSS */
        /* Better mobile touch targets */
        @media (max-width: 768px) {

            .menu-link,
            .action-btn,
            .cta-button {
                min-height: 44px;
                min-width: 44px;
            }

            /* Prevent zoom on input focus */
            input[type="text"],
            input[type="email"],
            input[type="tel"],
            textarea {
                font-size: 16px;
            }

            /* Better mobile scrolling */
            .mega-menu {
                -webkit-overflow-scrolling: touch;
            }
        }

        /* Pull-to-refresh prevention */
        body {
            overscroll-behavior-y: none;
        }

        /* Better mobile navigation */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--white);
            z-index: 10000;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            padding: 6rem 2rem 2rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Add to CSS */
        /* Loading skeletons */
        .skeleton {
            background: linear-gradient(90deg,
                    var(--light-gray) 25%,
                    rgba(255, 255, 255, 0.5) 50%,
                    var(--light-gray) 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* Toast notifications */
        .toast {
            position: fixed;
            top: 1rem;
            right: 1rem;
            padding: 1rem 1.5rem;
            background: var(--teal-primary);
            color: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            transform: translateX(120%);
            transition: transform 0.3s ease;
            z-index: 10000;
        }

        .toast.show {
            transform: translateX(0);
        }

        /* Progress indicators */
        .page-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--teal-primary);
            z-index: 1001;
            transition: width 0.3s ease;
        }



        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--navy-muted), var(--navy-dark)),
                url('https://images.unsplash.com/photo-1579621970795-87facc19e458?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text-on-dark);
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            margin-top: 72px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(46, 196, 182, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(44, 130, 201, 0.2) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            color: var(--text-on-dark);
            font-size: var(--font-5xl);
            line-height: 1.2;
            margin-bottom: var(--space-lg);
        }

        .hero p {
            font-size: var(--font-xl);
            max-width: 750px;
            margin: 0 auto var(--space-2xl);
            opacity: 0.95;
            color: var(--gray-200);
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: var(--space-lg);
            margin-top: var(--space-2xl);
            flex-wrap: wrap;
        }

        /* Service Badges */
        .service-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--space-lg);
            margin-top: var(--space-xl);
        }

        .badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-on-dark);
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-full);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            transition: var(--transition-base);
        }

        .badge i {
            color: var(--teal-primary);
        }

        .badge:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        /* Trust Stats */
        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
            text-align: center;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: var(--space-lg);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: var(--transition-base);
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: var(--font-4xl);
            font-weight: 700;
            color: var(--teal-primary);
            margin-bottom: var(--space-sm);
        }

        .stat-label {
            font-size: var(--font-lg);
            opacity: 0.9;
        }

        /* Services Overview */
        .services-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
        }

        .service-card {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            box-shadow: var(--shadow-md);
            transition: var(--transition-base);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-light);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-teal);
            transform: scaleX(0);
            transform-origin: right;
            transition: var(--transition-slow);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border-teal);
        }

        .service-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-teal-subtle);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            color: var(--teal-primary);
            font-size: var(--font-3xl);
        }

        .service-card h3 {
            font-size: var(--font-2xl);
            margin-bottom: var(--space-md);
        }

        .service-card p {
            color: var(--text-tertiary);
            margin-bottom: var(--space-lg);
            min-height: 100px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-xl);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: var(--font-lg);
            text-decoration: none;
            transition: var(--transition-base);
            justify-content: center;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gradient-teal);
            color: var(--text-on-dark);
            box-shadow: var(--shadow-teal);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--text-on-dark);
            color: var(--text-on-dark);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: var(--text-on-dark);
            color: var(--navy-primary);
        }

        /* Specialties Section */
        .specialties-section {
            background: var(--gradient-navy);
            color: var(--text-on-dark);
            position: relative;
            overflow: hidden;
        }

        .specialties-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 10% 90%, rgba(44, 130, 201, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(46, 196, 182, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .section-title {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--space-2xl);
        }

        .section-title h2 {
            color: var(--text-on-dark);
            font-size: var(--font-4xl);
            position: relative;
        }

        .section-title h2::after {
            background: var(--teal-primary);
        }

        .section-title p {
            font-size: var(--font-xl);
            opacity: 0.9;
            margin-top: var(--space-md);
            color: var(--gray-200);
        }

        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
        }

        .specialty-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            text-align: center;
            transition: var(--transition-base);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
        }

        .specialty-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            border-color: rgba(46, 196, 182, 0.3);
        }

        .specialty-icon {
            font-size: var(--font-4xl);
            color: var(--teal-primary);
            margin-bottom: var(--space-lg);
        }

        .specialty-card h3 {
            font-size: var(--font-2xl);
            margin-bottom: var(--space-sm);
            color: var(--text-on-dark);
        }

        .specialty-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: var(--font-lg);
        }

        /* RCM Features */
        .features-section {
            background: var(--bg-secondary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
        }

        .feature-card {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: var(--transition-base);
            border: 1px solid var(--border-light);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--teal-primary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--bg-teal-subtle);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
            color: var(--teal-primary);
            font-size: var(--font-4xl);
        }

        .feature-card h3 {
            font-size: var(--font-2xl);
            margin-bottom: var(--space-md);
            color: var(--navy-primary);
        }

        .feature-card p {
            color: var(--text-tertiary);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-teal);
            color: var(--text-on-dark);
            text-align: center;
            padding: var(--space-2xl) 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: var(--font-5xl);
            margin-bottom: var(--space-lg);
            color: var(--text-on-dark);
        }

        .cta-content p {
            font-size: var(--font-xl);
            margin-bottom: var(--space-2xl);
            opacity: 0.95;
        }

        .risk-reversal {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            background: rgba(255, 255, 255, 0.2);
            padding: var(--space-md) var(--space-xl);
            border-radius: var(--radius-full);
            margin-top: var(--space-lg);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .risk-reversal i {
            color: var(--text-on-dark);
            font-size: var(--font-xl);
        }

        /* Footer */
        footer {
            background: var(--navy-primary);
            color: var(--text-on-dark);
            padding: var(--space-2xl) 0 var(--space-xl);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }

        .footer-col h3 {
            color: var(--text-on-dark);
            margin-bottom: var(--space-lg);
            position: relative;
            padding-bottom: var(--space-sm);
            font-size: var(--font-2xl);
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--teal-primary);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: var(--space-sm);
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            transition: var(--transition-base);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--text-on-dark);
            padding-left: var(--space-xs);
        }

        .copyright {
            text-align: center;
            padding-top: var(--space-xl);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-500);
            font-size: var(--font-sm);
        }

        /* Benefits Section */
        .benefits-section {
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
        }

        .benefit-card {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-teal);
            transform: scaleX(0);
            transform-origin: right;
            transition: var(--transition-slow);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .benefit-icon {
            font-size: var(--font-4xl);
            color: var(--teal-primary);
            margin-bottom: var(--space-lg);
        }

        .benefit-card h3 {
            font-size: var(--font-2xl);
            margin-bottom: var(--space-md);
        }

        /* Case Study Section */
        .case-study {
            background: var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: var(--space-2xl);
            box-shadow: var(--shadow-md);
            margin-top: var(--space-2xl);
            position: relative;
            overflow: hidden;
        }

        .case-study::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: var(--gradient-teal);
        }

        .case-study-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-2xl);
            align-items: center;
        }

        .case-study-text h3 {
            font-size: var(--font-3xl);
            margin-bottom: var(--space-md);
            color: var(--navy-primary);
        }

        .case-study-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-xl);
            margin-top: var(--space-xl);
        }

        .stat-comparison {
            text-align: center;
        }

        .stat-value {
            font-size: var(--font-4xl);
            font-weight: 700;
            color: var(--teal-primary);
        }

        .stat-label {
            font-size: var(--font-base);
            color: var(--text-tertiary);
            margin-top: var(--space-xs);
        }

        .improvement {
            color: var(--teal-primary);
            font-weight: 600;
        }

        /* Service Category Navigation */
        .service-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--space-md);
            margin-bottom: var(--space-2xl);
        }

        .service-nav-btn {
            background: var(--bg-secondary);
            border: 2px solid var(--border-light);
            color: var(--text-primary);
            padding: var(--space-sm) var(--space-lg);
            border-radius: var(--radius-full);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .service-nav-btn.active,
        .service-nav-btn:hover {
            background: var(--teal-primary);
            border-color: var(--teal-primary);
            color: var(--text-on-dark);
            transform: translateY(-2px);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity var(--transition-slow), transform var(--transition-slow);
        }

        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        .delay-5 {
            animation-delay: 1s;
        }

        /* Skip to Main Content Link for Accessibility */
        .skip-to-content {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 9999;
            padding: var(--space-md);
            background: var(--teal-primary);
            color: var(--text-on-dark);
            text-decoration: none;
            font-weight: 600;
        }

        .skip-to-content:focus {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: var(--font-4xl);
            }

            h2 {
                font-size: var(--font-3xl);
            }

            .hero {
                padding: 140px 0 100px;
            }

            .hero h1 {
                font-size: var(--font-4xl);
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .hero-btns a {
                width: 100%;
                max-width: 300px;
            }

            .case-study-content {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--bg-primary);
                flex-direction: column;
                padding: var(--space-lg) 0;
                box-shadow: var(--shadow-lg);
                z-index: 100;
                gap: 0;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                margin: 0;
                text-align: center;
                padding: var(--space-md) 0;
                border-bottom: 1px solid var(--border-light);
            }

            nav ul li a {
                display: block;
                width: 100%;
                font-size: var(--font-lg);
            }

            section {
                padding: var(--space-2xl) 0;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .hero h1 {
                font-size: var(--font-3xl);
            }

            .hero p {
                font-size: var(--font-lg);
            }

            .service-badges {
                gap: var(--space-sm);
            }

            .badge {
                padding: var(--space-xs) var(--space-md);
                font-size: var(--font-sm);
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: var(--space-md) 0;
            }

            .logo h1 {
                font-size: var(--font-xl);
            }

            .hero {
                padding: 100px 0 60px;
                margin-top: 65px;
            }

            .hero h1 {
                font-size: var(--font-2xl);
            }

            h2 {
                font-size: var(--font-2xl);
            }

            .section-title h2 {
                font-size: var(--font-2xl);
            }

            .container {
                padding: 0 var(--space-md);
            }

            .btn {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 0 auto var(--space-md);
            }

            .btn-primary {
                padding: var(--space-md);
            }

            .hero-btns {
                gap: var(--space-md);
            }

            .trust-stats {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: var(--font-3xl);
            }

            .service-nav {
                flex-direction: column;
                align-items: center;
            }

            .service-nav-btn {
                width: 100%;
                max-width: 250px;
            }
        }

        /* Optimize animations and transitions */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Optimize images */
        img {
            content-visibility: auto;
        }

        /* Critical CSS loading indicator */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--navy-primary);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loading-screen.hidden {
            animation: fadeOut 0.5s forwards;
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }

        /* ===== NAVIGATION & MEGA MENUS ===== */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px) scale(0.98);
            width: 900px;
            max-width: 95vw;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-slow);
            z-index: 1000;
            border: 1px solid var(--border-light);
            overflow: hidden;
            max-height: 70vh;
            overflow-y: auto;
            pointer-events: none;
        }

        .mega-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
            pointer-events: auto;
        }

        .mega-header {
            background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
            color: var(--white);
            padding: var(--space-lg) var(--space-xl);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .mega-header h2 {
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin: 0;
        }

        .mega-content {
            padding: var(--space-xl);
        }

        .mega-content.specialties {
            display: grid;
            grid-template-columns: 280px 1fr !important;
            gap: var(--space-xl) !important;
        }

        .mega-content.tools {
            display: grid;
            grid-template-columns: 1fr 300px !important;
            gap: var(--space-xl) !important;
        }

        .category-title {
            color: var(--navy-primary);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: var(--space-md);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-bottom: var(--space-sm);
            border-bottom: 2px solid var(--teal-light);
        }

        .service-grid,
        .specialties-grid,
        .tools-categories {
            display: grid !important;
            gap: var(--space-md) !important;
        }

        .service-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }

        .specialties-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }

        .tools-categories {
            grid-template-columns: repeat(2, 1fr) !important;
        }

        .service-item,
        .specialty-card,
        .tools-category {
            background: var(--gray-50);
            border-radius: 12px;
            padding: var(--space-md);
            transition: all var(--transition-base);
            border: 1px solid transparent;
        }

        .service-item:hover,
        .specialty-card:hover {
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            border-color: var(--teal-light);
        }

        .featured-specialty {
            background: linear-gradient(135deg, var(--teal-primary), var(--navy-light));
            border-radius: 16px;
            padding: var(--space-lg);
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .tools-sidebar {
            background: linear-gradient(135deg, var(--teal-primary), var(--navy-light));
            border-radius: 16px;
            padding: var(--space-lg);
            color: var(--white);
            height: 100%;
        }

        /* ===== SEARCH ===== */
        .search-container {
            position: relative;
            flex-shrink: 0;
        }

        .search-input {
            padding: 0.6rem 1rem 0.6rem 2.5rem;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            width: 240px;
            font-size: 0.9rem;
            transition: all var(--transition-base);
            background: var(--white);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--teal-primary);
            box-shadow: var(--shadow-teal);
        }

        /* ===== INNER PAGE SHARED STYLES ===== */
        
        /* Section text */
        .section-p {
            color: var(--gray-800);
            font-size: var(--font-lg);
            line-height: 1.7;
        }

        /* Hero Section for Inner Pages */
        .hero {
            background: var(--gradient-navy);
            color: var(--white);
            padding: 10rem 0 6rem;
            position: relative;
            overflow: hidden;
            margin-top: 72px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(46, 196, 182, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(44, 130, 201, 0.15) 0%, transparent 50%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: var(--font-5xl);
        }

        .hero p {
            font-size: var(--font-xl);
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .hero-badges .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--white);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badges .badge i {
            color: var(--teal-primary);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem auto 0;
            max-width: 1000px;
        }

        .hero-stats .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: var(--transition-base);
        }

        .hero-stats .stat-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .hero-stats .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--teal-primary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .hero-stats .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Trust Section */
        .trust-section {
            background: var(--gray-50);
            padding: 3rem 0;
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }

        .trust-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
            justify-items: center;
        }

        .trust-logo {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-base);
            font-weight: 700;
            color: var(--teal-primary);
            font-size: 1.25rem;
        }

        .trust-logo:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--teal-primary);
        }

        /* Services Section */
        .services-section {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .services-grid .service-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition-base);
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
        }

        .services-grid .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-teal);
            transform: scaleX(0);
            transform-origin: right;
            transition: var(--transition-base);
        }

        .services-grid .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .services-grid .service-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .services-grid .service-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-teal-subtle);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--teal-primary);
            font-size: 2rem;
        }

        .services-grid .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--navy-primary);
        }

        .services-grid .service-card ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .services-grid .service-card li {
            padding: 0.5rem 0;
            color: var(--gray-600);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .services-grid .service-card li::before {
            content: '✓';
            color: var(--teal-primary);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* RCM Section */
        .rcm-section {
            background: var(--gray-50);
        }

        .rcm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .rcm-content h2 {
            margin-bottom: 1.5rem;
        }

        .rcm-features {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .rcm-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .rcm-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--teal-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .rcm-image {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .pricing-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            border: 2px solid var(--gray-200);
            transition: var(--transition-base);
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--teal-primary);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--teal-primary);
            color: var(--white);
            padding: 0.25rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .pricing-header h3 {
            color: var(--navy-primary);
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--teal-primary);
            margin: 1rem 0;
        }

        .pricing-price span {
            font-size: 1rem;
            color: var(--gray-600);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--gray-600);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--teal-primary);
            font-weight: 700;
            flex-shrink: 0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 3rem 0;
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .comparison-table th {
            background: var(--navy-primary);
            color: var(--white);
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            color: var(--gray-700);
        }

        .comparison-table tr:nth-child(even) {
            background: var(--gray-50);
        }

        .comparison-table tr:hover {
            background: var(--gray-100);
        }

        .savings-highlight {
            background: var(--gradient-teal);
            color: var(--white);
            padding: 3rem;
            border-radius: var(--radius-xl);
            text-align: center;
            margin: 3rem 0;
        }

        .savings-highlight h3 {
            color: var(--white);
        }

        .savings-amount {
            font-size: 4rem;
            font-weight: 800;
            margin: 1rem 0;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--gray-50);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 5rem;
            color: var(--teal-primary);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            font-style: italic;
            color: var(--gray-600);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-teal);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .testimonial-author .author-info h4 {
            margin-bottom: 0.25rem;
            font-size: 1rem;
            color: var(--navy-primary);
        }

        .testimonial-author .author-info p {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin: 0;
        }

        .rating {
            display: flex;
            gap: 0.25rem;
            color: var(--warning-orange);
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            background: var(--white);
            padding: 1.5rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition-base);
            color: var(--navy-primary);
        }

        .faq-question:hover {
            background: var(--gray-50);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .faq-toggle {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* CTA Section for Inner Pages */
        .cta-section {
            background: var(--gradient-navy);
            color: var(--white);
            text-align: center;
            padding: 6rem 0;
        }

        .cta-section h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        /* Site Footer */
        .site-footer {
            background: var(--navy-primary);
            color: var(--gray-300);
            padding: 5rem 0 2rem;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .site-footer .footer-col h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .site-footer .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--teal-primary);
        }

        .site-footer .footer-links {
            list-style: none;
        }

        .site-footer .footer-links li {
            margin-bottom: 0.875rem;
        }

        .site-footer .footer-links a {
            color: var(--gray-300);
            transition: var(--transition-base);
        }

        .site-footer .footer-links a:hover {
            color: var(--teal-primary);
            padding-left: 0.5rem;
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition-base);
        }

        .social-link:hover {
            background: var(--teal-primary);
            transform: translateY(-3px);
        }

        /* Button Styles for Inner Pages */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            transition: var(--transition-base);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--teal-primary);
            color: var(--white);
            box-shadow: var(--shadow-teal);
        }

        .btn-primary:hover {
            background: var(--teal-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 196, 182, 0.4);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--teal-primary);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--teal-primary);
            color: var(--teal-primary);
        }

        .btn-outline:hover {
            background: var(--teal-primary);
            color: var(--white);
        }

        .btn-lg {
            padding: 1.25rem 2.5rem;
            font-size: 1.125rem;
        }

        /* Responsive Styles for Inner Pages */
        @media (max-width: 1024px) {
            .rcm-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .site-footer .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 8rem 0 4rem;
                margin-top: 72px;
            }

            .hero h1 {
                font-size: var(--font-3xl);
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                grid-template-columns: 1fr;
            }

            .stat-card {
                padding: 1.5rem 1rem;
            }

            .btn {
                width: 100%;
            }

            .savings-amount {
                font-size: 3rem;
            }
        }