:root {
            --primary-blue: #2563eb;
            --light-blue: #dbeafe;
            --dark-grey: #374151;
            --light-grey: #f8fafc;
            --medium-grey: #64748b;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--dark-grey);
            overflow-x: hidden;
        }

        .container, .container-fluid {
            /* max-width: 100%; */
            overflow-x: hidden;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .btn-primary-custom {
            background: var(--primary-blue);
            border: none;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            font-size: 1.5rem;
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .video-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .founder-image {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
            color: white;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
            }
            50% {
                box-shadow: 0 1.5rem 4rem rgba(37, 99, 235, 0.2);
            }
        }
        
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        /* Typography responsive improvements */
        @media (max-width: 767.98px) {
            .display-3 {
                font-size: 2.5rem;
            }

            .display-4 {
                font-size: 2rem;
            }

            .display-5 {
                font-size: 1.75rem;
            }

            .stats-number {
                font-size: 2.5rem;
            }

            .lead {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 575.98px) {
            .display-3 {
                font-size: 2rem;
            }

            .display-4 {
                font-size: 1.75rem;
            }

            .display-5 {
                font-size: 1.5rem;
            }

            .stats-number {
                font-size: 2rem;
            }

            .lead {
                font-size: 1rem;
            }
        }
        
        .lead-form {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .form-control {
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            padding: 12px 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }
        
        .hero-video-container {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .hero-video-container:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 2rem 4rem rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.1);
        }

        .hero-video-container.playing {
            animation: pulse 3s ease-in-out infinite;
        }

        .hero-video {
            border-radius: 1.5rem;
            transition: opacity 0.3s ease;
            aspect-ratio: 16/12;
            object-fit: cover;
            width: 100%;
            height: auto;
            display: block;
        }

        .hero-video:hover {
            opacity: 0.95;
        }

        .video-loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 1.5rem;
            opacity: 1;
            transition: opacity 0.5s ease;
            pointer-events: none;
            backdrop-filter: blur(10px);
        }

        .video-loading-overlay::after {
            content: 'Loading animation...';
            margin-top: 1rem;
            color: var(--primary-blue);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .hero-video-container.loaded .video-loading-overlay {
            opacity: 0;
        }

        /* Enhanced floating elements for video section */
        .hero-video-container::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
            border-radius: 2rem;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-video-container:hover::before {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .hero-video {
                aspect-ratio: 16/10;
            }

            .hero-video-container {
                margin-top: 2rem;
            }

            .hero-video-container:hover {
                transform: translateY(-2px);
            }
        }

        @media (max-width: 576px) {
            .hero-video {
                aspect-ratio: 4/3;
            }
        }

        .hero-title {
            font-size: 3rem;
        }

        /* Responsive styles for professional contained video */
        @media (max-width: 991.98px) {
            .hero-video-column {
                order: -1;
                min-height: 50vh;
                padding: 1.5rem 1rem;
            }

            .hero-video-container-full {
                max-width: 500px;
            }

            .hero-content {
                /* padding: 2rem 1.5rem; */
                text-align: center;
            }

            .hero-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767.98px) {
            .hero-video-column {
                min-height: 40vh;
                padding: 1rem 0.5rem;
            }

            .hero-video-container-full {
                max-width: 450px;
                border-radius: 1rem;
            }

            .hero-video-full {
                border-radius: 1rem;
                aspect-ratio: 16/10;
            }

            .video-loading-overlay-full {
                border-radius: 1rem;
            }

            .hero-content {
                padding: 1.5rem 1rem;
            }

            .hero-title {
                font-size: 2rem;
            }
            .lead-content {
                padding-right: 0px !important;
            }
        }

        @media (max-width: 575.98px) {
            .hero-video-column {
                min-height: 35vh;
                padding: 0.75rem 0.25rem;
            }

            .hero-video-container-full {
                max-width: 100%;
                border-radius: 0.75rem;
            }

            .hero-video-full {
                border-radius: 0.75rem;
                aspect-ratio: 4/3;
            }

            .video-loading-overlay-full {
                border-radius: 0.75rem;
            }

            .hero-video-container-full:hover {
                transform: translateY(-4px) scale(1.01);
            }

            .hero-content {
                padding: 1rem;
            }

            .hero-title {
                font-size: 1.75rem;
            }
        }

        /* Lead capture responsive styles */
        @media (max-width: 991.98px) {
            .lead-content {
                padding-right: 0;
                text-align: center;
                margin-bottom: 3rem;
            }

            .highlight-item {
                justify-content: center;
                text-align: left;
                max-width: 400px;
                margin: 0 auto 1.5rem auto;
            }
        }

        @media (max-width: 767.98px) {
            .lead-capture-card {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }

            .lead-capture-section {
                padding: 3rem 0;
            }

            .lead-content h2 {
                font-size: 2rem;
            }

            .highlight-item {
                max-width: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .lead-capture-card {
                padding: 1.5rem 1rem;
                margin: 0 0.5rem;
            }

            .lead-capture-section {
                padding: 2rem 0;
            }

            .lead-input {
                padding: 12px 14px;
                font-size: 0.9rem;
            }

            .lead-content {
                margin-bottom: 2rem;
            }

            .lead-content h2 {
                font-size: 1.75rem;
            }

            .highlight-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .trust-indicators {
                padding: 1rem;
            }
        }

        /* Footer responsive styles */
        @media (max-width: 991.98px) {
            .footer-meta {
                text-align: left;
                margin-top: 1rem;
            }

            .footer-main {
                padding: 3rem 0 1.5rem 0;
            }
        }

        @media (max-width: 767.98px) {
            .footer-section {
                margin-bottom: 2rem;
            }

            .footer-main {
                padding: 2rem 0 1rem 0;
            }

            .social-links .d-flex {
                justify-content: center;
            }

            .footer-section:last-child {
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .footer-links-inline {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }

            .separator {
                display: none;
            }

            .social-link {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }
        }

        /* Interactive Demo Responsive Styles */
        @media (max-width: 991.98px) {
            .interactive-demo-section {
                padding: 4rem 0;
            }

            .demo-features {
                margin-bottom: 3rem;
            }

            .feature-demo-card:hover,
            .feature-demo-card.active {
                transform: translateY(-5px);
            }

            .demo-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 767.98px) {
            .interactive-demo-section {
                padding: 3rem 0;
            }

            .demo-title {
                font-size: 2rem;
            }

            .demo-subtitle {
                font-size: 1rem;
            }

            .feature-demo-card {
                padding: 1rem;
                margin-bottom: 0.75rem;
            }

            .feature-demo-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .demo-stats {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .play-button-large {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .demo-cta {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .demo-title {
                font-size: 1.75rem;
            }

            .demo-badge {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }

            .feature-demo-card {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 1rem;
            }

            .feature-demo-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .feature-demo-arrow {
                display: none;
            }

            .video-controls .d-flex {
                flex-direction: column;
                gap: 0.75rem;
            }

            .video-control-btn {
                width: 100%;
            }

            .demo-cta .d-flex {
                flex-direction: column;
                gap: 1rem;
            }

            .demo-cta .btn {
                width: 100%;
            }
        }

        /* Hero content animations */
        .hero-content {
            animation: fadeInLeft 0.8s ease-out both;
        }

        .hero-title {
            animation: fadeInLeft 0.8s ease-out 0.1s both;
        }

        .hero-subtitle {
            animation: fadeInLeft 0.8s ease-out 0.2s both;
        }

        .hero-buttons {
            animation: fadeInLeft 0.8s ease-out 0.3s both;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Enhanced button hover effects */
        .btn-primary-custom, .btn-outline-custom {
            position: relative;
            overflow: hidden;
        }

        .btn-primary-custom::before, .btn-outline-custom::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.5s;
        }

        .btn-primary-custom:hover::before, .btn-outline-custom:hover::before {
            left: 100%;
        }

        /* Button responsive improvements */
        @media (max-width: 767.98px) {
            .btn-lg {
                padding: 0.75rem 1.5rem;
                font-size: 1rem;
            }

            .hero-buttons .btn {
                width: 100%;
                margin-bottom: 0.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 575.98px) {
            .btn-lg {
                padding: 0.625rem 1.25rem;
                font-size: 0.9rem;
            }
        }

        /* Professional contained video styles */
        .hero-video-column {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
            min-height: 60vh;
        }

        .hero-video-container-full {
            position: relative;
            width: 100%;
            max-width: 600px;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-video-container-full:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
        }

        .hero-video-full {
            width: 100%;
            height: auto;
            aspect-ratio: 16/12;
            object-fit: cover;
            border-radius: 1.5rem;
            transition: opacity 0.3s ease;
            display: block;
        }

        .hero-video-full:hover {
            opacity: 0.95;
        }

        .video-loading-overlay-full {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 1.5rem;
            opacity: 1;
            transition: opacity 0.5s ease;
            pointer-events: none;
            backdrop-filter: blur(10px);
        }

        .video-loading-overlay-full::after {
            content: 'Loading animation...';
            margin-top: 1rem;
            color: var(--primary-blue);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .hero-video-container-full.loaded .video-loading-overlay-full {
            opacity: 0;
        }

        /* Enhanced floating elements for professional video */
        .hero-video-container-full::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
            border-radius: 2rem;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-video-container-full:hover::before {
            opacity: 1;
        }

        /* Enhanced hero content spacing */
        .hero-content {
            padding: 2rem 1rem;
        }

        @media (min-width: 992px) {
            /* .hero-content {
                padding: 2rem 3rem 2rem 2rem;
            } */
        }

        /* Professional Navigation Styles */
        .professional-navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 0.75rem 0;
            transition: all 0.3s ease;
        }

        .professional-navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
            padding: 0.5rem 0;
        }

        /* Brand Section */
        .professional-brand {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .professional-brand:hover {
            transform: translateY(-1px);
        }

        .brand-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .brand-logo {
            transition: all 0.3s ease;
            /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); */
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: -0.5px;
        }

        .brand-tagline {
            font-size: 0.75rem;
            color: var(--medium-grey);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Professional Navigation Links */
        .professional-nav {
            gap: 0.5rem;
        }

        .professional-nav-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            font-weight: 500;
            color: var(--dark-grey);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .professional-nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .professional-nav-link:hover::before {
            left: 100%;
        }

        .professional-nav-link:hover,
        .professional-nav-link.active {
            color: var(--primary-blue);
            background: rgba(37, 99, 235, 0.08);
            transform: translateY(-1px);
        }

        .professional-nav-link.active {
            background: rgba(37, 99, 235, 0.12);
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
        }

        .nav-icon {
            font-size: 0.9rem;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .professional-nav-link:hover .nav-icon,
        .professional-nav-link.active .nav-icon {
            opacity: 1;
            transform: scale(1.1);
        }

        /* Custom Mobile Toggle */
        .professional-toggler {
            border: none;
            padding: 0.5rem;
            background: transparent;
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .professional-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .professional-toggler:hover {
            background: rgba(37, 99, 235, 0.1);
        }

        .toggler-line {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--primary-blue);
            margin: 4px auto;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .professional-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .professional-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
            opacity: 0;
        }

        .professional-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* CTA Button in Navbar */
        .navbar-cta-btn {
            padding: 0.5rem 1.25rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
        }

        .navbar-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        /* Professional Navbar Responsive Styles */
        @media (max-width: 991.98px) {
            .brand-text {
                display: none;
            }

            .brand-logo {
                height: 40px;
            }

            .professional-nav {
                margin-top: 1rem;
                padding: 1rem 0;
                border-top: 1px solid rgba(37, 99, 235, 0.1);
            }

            .professional-nav-link {
                justify-content: center;
                padding: 1rem;
                margin: 0.25rem 0;
                border-radius: 12px;
            }

            .navbar-cta {
                margin: 1rem 0 0 0;
                text-align: center;
                border-top: 1px solid rgba(37, 99, 235, 0.1);
                padding-top: 1rem;
            }

            .navbar-cta-btn {
                width: 100%;
                padding: 0.75rem 1.5rem;
            }

            .cta-text {
                display: inline;
            }
        }

        @media (max-width: 767.98px) {
            .professional-navbar {
                padding: 0.5rem 0;
            }

            .brand-logo {
                height: 35px;
            }

            .brand-name {
                font-size: 1.25rem;
            }

            .professional-nav-link {
                font-size: 0.9rem;
            }

            .nav-icon {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 575.98px) {
            .brand-container {
                gap: 0.5rem;
            }

            .brand-logo {
                height: 30px;
            }

            .brand-name {
                font-size: 1.1rem;
            }

            .professional-nav-link span {
                font-size: 0.85rem;
            }

            .navbar-cta-btn {
                font-size: 0.8rem;
                padding: 0.625rem 1.25rem;
            }
        }

        /* Lead Capture Section Styles */
        .lead-capture-section {
            position: relative;
            overflow: hidden;
        }

        .lead-capture-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .lead-capture-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(37, 99, 235, 0.1);
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }

        .lead-capture-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), #1e40af);
            border-radius: 20px 20px 0 0;
        }

        .lead-input {
            border-radius: 12px;
            border: 2px solid #e2e8f0;
            padding: 14px 16px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .lead-input:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
            transform: translateY(-1px);
        }

        .lead-input:valid {
            border-color: #10b981;
        }

        .lead-submit-btn {
            position: relative;
            overflow: hidden;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .lead-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
        }

        .lead-submit-btn:active {
            transform: translateY(0);
        }

        .form-label {
            color: var(--dark-grey);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        /* Interactive Why Hilt Image Section */
        .why-hilt-image-container {
            position: relative;
            border-radius: 20px;
            overflow: visible;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease-out both;
            height: 100%;
            min-height: 500px;
        }

        .why-hilt-image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .why-hilt-image {
            width: 100%;
            height: 100%;
            min-height: 500px;
            object-fit: cover;
            display: block;
            transition: all 0.3s ease;
        }

        .why-hilt-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .why-hilt-trigger {
            position: absolute;
            top: 49%;
            left: 73%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(30, 64, 175, 0.95));
            color: white;
            padding: 0.6rem 1rem;
            border-radius: 50px;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.3s ease;
            display: flex;
            width: 170px;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            backdrop-filter: blur(15px);
            border: 3px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6),
                        0 0 0 0 rgba(37, 99, 235, 0.4);
            font-weight: 700;
            letter-spacing: 0.5px;
            animation: pulseGlow 2s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6),
                            0 0 0 0 rgba(37, 99, 235, 0.4);
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                box-shadow: 0 15px 45px rgba(37, 99, 235, 0.8),
                            0 0 0 8px rgba(37, 99, 235, 0.2);
                transform: translate(-50%, -50%) scale(1.05);
            }
        }

        .why-hilt-trigger:hover {
            background: linear-gradient(135deg, rgba(37, 99, 235, 1), rgba(30, 64, 175, 1));
            animation-play-state: paused;
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.8),
                        0 0 0 12px rgba(37, 99, 235, 0.3);
        }

        .why-hilt-text {
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .why-hilt-icon {
            font-size: 1.1rem;
            opacity: 0.9;
            animation: bounce 1.5s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .why-hilt-trigger:hover .why-hilt-icon {
            opacity: 1;
            transform: scale(1.2) translateY(-2px);
            animation-play-state: paused;
        }

        .why-hilt-trigger:hover .why-hilt-text {
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
        }

        /* Interaction Hint */
        .interaction-hint {
            position: absolute;
            top: 62%;
            left: 73%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            opacity: 0.8;
            animation: fadeInOut 3s ease-in-out infinite;
            pointer-events: none;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        @keyframes fadeInOut {
            0%, 100% {
                opacity: 0.6;
                transform: translateX(-50%) translateY(0);
            }
            50% {
                opacity: 1;
                transform: translateX(-50%) translateY(-3px);
            }
        }

        .interaction-hint i {
            font-size: 0.7rem;
            animation: pointPulse 1.5s ease-in-out infinite;
        }

        @keyframes pointPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        /* Hide hint when tooltip is active */
        .why-hilt-tooltip.active ~ .interaction-hint {
            opacity: 0;
            visibility: hidden;
        }

        /* Tooltip/Slide-out Styles */
        .why-hilt-tooltip {
            position: absolute;
            top: 150px;
            right: 20px;
            width: 350px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateX(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: all;
            z-index: 10;
        }

        .why-hilt-tooltip.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            right: -10px;
        }

        .tooltip-content {
            padding: 0;
            border-radius: 15px;
            overflow: hidden;
        }

        .tooltip-header {
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            color: white;
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tooltip-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
        }

        .tooltip-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .tooltip-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .tooltip-body {
            padding: 1.5rem;
            line-height: 1.6;
        }

        .tooltip-body p {
            margin-bottom: 1rem;
            color: var(--dark-grey);
            font-size: 0.95rem;
        }

        .tooltip-body p:last-child {
            margin-bottom: 0;
        }

        .tooltip-body strong {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Responsive styles for Why Hilt Image Section */
        @media (max-width: 991.98px) {
            .why-hilt-image-container {
                min-height: 400px;
            }

            .why-hilt-image {
                min-height: 400px;
            }

            .why-hilt-tooltip {
                width: 320px;
                top: 15px;
                right: 15px;
            }

            .why-hilt-trigger {
                padding: 0.5rem 0.875rem;
                gap: 0.4rem;
                width: 150px;
            }

            .why-hilt-text {
                font-size: 0.9rem;
            }

            .interaction-hint {
                font-size: 0.7rem;
                padding: 0.4rem 0.6rem;
            }
        }

        @media (max-width: 767.98px) {
            .why-hilt-image-container {
                min-height: 350px;
            }

            .why-hilt-image {
                min-height: 350px;
            }

            .why-hilt-tooltip {
                width: 280px;
                top: 10px;
                right: 10px;
                left: 10px;
                width: auto;
            }

            .why-hilt-trigger {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .why-hilt-text {
                font-size: 0.95rem;
            }

            .why-hilt-icon {
                font-size: 1rem;
            }

            .tooltip-header {
                padding: 1rem 1.25rem;
            }

            .tooltip-title {
                font-size: 1rem;
            }

            .tooltip-body {
                padding: 1.25rem;
            }

            .tooltip-body p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 575.98px) {
            .why-hilt-image-container {
                border-radius: 15px;
                min-height: 300px;
            }

            .why-hilt-image {
                min-height: 300px;
            }

            .why-hilt-tooltip {
                top: 5px;
                right: 5px;
                left: 5px;
                border-radius: 12px;
            }

            .tooltip-content {
                border-radius: 12px;
            }

            .why-hilt-trigger {
                padding: 0.625rem 0.875rem;
                border-radius: 25px;
            }

            .why-hilt-text {
                font-size: 0.85rem;
            }

            .why-hilt-icon {
                font-size: 0.9rem;
            }

            .tooltip-header {
                padding: 0.875rem 1rem;
            }

            .tooltip-body {
                padding: 1rem;
            }

            .tooltip-body p {
                font-size: 0.85rem;
                margin-bottom: 0.75rem;
            }
        }

        /* Mobile touch support */
        @media (hover: none) and (pointer: coarse) {
            .why-hilt-trigger {
                background: rgba(37, 99, 235, 1);
            }

            .why-hilt-trigger:active {
                transform: translate(-50%, -50%) scale(0.95);
            }
        }

        /* Professional About Section Styles */
        .professional-about-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
        }

        .professional-about-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"><defs><pattern id="aboutGrid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutGrid)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        /* Section Header */
        .section-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            animation: fadeInUp 0.8s ease-out both;
        }

        .section-header {
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            color: var(--dark-grey);
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .section-header .lead {
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        /* Professional Image Section */
        .professional-image-section {
            height: 100%;
            min-height: 600px;
            position: relative;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(30, 64, 175, 0.02));
        }

        /* Professional Content Section */
        .professional-content-section {
            background: white;
            min-height: 600px;
            position: relative;
        }

        .content-wrapper {
            padding: 3rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Equal height columns */
        .content-wrapper .row {
            display: flex;
            align-items: stretch;
        }

        .content-wrapper .col-lg-6 {
            display: flex;
            flex-direction: column;
        }

        /* Company Info Card */
        .company-info-card {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(37, 99, 235, 0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            animation: fadeInRight 0.8s ease-out 0.6s both;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Professional Highlights */
        .professional-highlights {
            margin: 2rem 0;
        }

        .highlight-row {
            margin-bottom: 1rem;
        }

        .highlight-card {
            display: flex;
            align-items: flex-start;
            padding: 1.25rem;
            background: white;
            border-radius: 12px;
            border: 1px solid rgba(37, 99, 235, 0.08);
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }

        .highlight-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .highlight-icon-pro {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            margin-right: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .highlight-content-pro h6 {
            color: var(--dark-grey);
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .highlight-content-pro p {
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* Trust Metrics */
        .trust-metrics {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(30, 64, 175, 0.02));
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            text-align: center;
        }

        .metric-item {
            padding: 0.75rem;
        }

        .metric-number {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .metric-label {
            font-size: 0.75rem;
            color: var(--medium-grey);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        /* Professional Video Card */
        .professional-video-card {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid rgba(37, 99, 235, 0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            animation: fadeInRight 0.8s ease-out 0.8s both;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .video-header h5 {
            color: var(--dark-grey);
            font-size: 1.1rem;
        }

        .professional-video-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            background: #000;
            width: 100%;
            height: 400px;
            min-height: 400px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .professional-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
            background: #000;
        }

        /* iOS specific video styles */
        .professional-video::-webkit-media-controls {
            display: none !important;
        }

        .professional-video::-webkit-media-controls-enclosure {
            display: none !important;
        }

        /* Show controls when needed on iOS */
        .professional-video[controls]::-webkit-media-controls {
            display: flex !important;
        }

        .professional-video[controls]::-webkit-media-controls-enclosure {
            display: flex !important;
        }

        /* iOS video container improvements */
        @supports (-webkit-touch-callout: none) {
            .professional-video-container {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
            }

            .professional-video {
                -webkit-transform: translateZ(0);
                transform: translateZ(0);
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
            }
        }

        .professional-video-loading {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.5s ease;
            z-index: 10;
        }

        .professional-video-container.loaded .professional-video-loading {
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }

        /* Hide loading when video is ready */
        .professional-video-container .professional-video:not([src=""]) + .professional-video-loading {
            opacity: 0;
            visibility: hidden;
        }

        .loading-spinner {
            position: relative;
            width: 50px;
            height: 50px;
            margin-bottom: 1rem;
        }

        .spinner-ring {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(37, 99, 235, 0.2);
            border-top: 4px solid var(--primary-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            color: var(--primary-blue);
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
        }

        .video-controls-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .professional-video-container:hover .video-controls-overlay {
            opacity: 1;
        }

        .video-play-btn {
            width: 60px;
            height: 60px;
            background: rgba(37, 99, 235, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        .video-play-btn:hover {
            background: var(--primary-blue);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        /* iOS touch improvements */
        .video-play-btn:active {
            transform: scale(0.95);
            background: var(--primary-blue);
        }

        /* Better touch targets for iOS */
        @media (hover: none) and (pointer: coarse) {
            .video-controls-overlay {
                opacity: 1;
                background: rgba(0,0,0,0.2);
            }

            .video-play-btn {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
                background: rgba(37, 99, 235, 0.95);
            }

            .professional-video-container:hover .video-controls-overlay {
                opacity: 1;
            }
        }

        /* iOS Safari specific fixes */
        @supports (-webkit-touch-callout: none) {
            .video-controls-overlay {
                -webkit-tap-highlight-color: transparent;
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                user-select: none;
            }

            .video-play-btn {
                -webkit-tap-highlight-color: transparent;
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                user-select: none;
                touch-action: manipulation;
            }
        }

        /* Professional CTA Section Styles */
        .professional-cta-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 25px 50px rgba(0,0,0,0.08);
            border: 1px solid rgba(37, 99, 235, 0.08);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out 0.7s both;
        }

        .professional-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), #1e40af, #7c3aed);
            border-radius: 24px 24px 0 0;
        }

        /* Section Header */
        .cta-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            }
            50% {
                box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
            }
        }

        .cta-header h3 {
            color: var(--dark-grey);
            line-height: 1.2;
        }

        /* Value Proposition */
        .value-proposition {
            padding: 1.5rem;
            background: rgba(37, 99, 235, 0.02);
            border-radius: 16px;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .benefit-list {
            margin-bottom: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
        }

        .benefit-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            margin-right: 1rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .benefit-content h6 {
            color: var(--dark-grey);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .benefit-content p {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Partnership CTA */
        .partnership-card {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border: 1px solid rgba(37, 99, 235, 0.15);
            border-radius: 12px;
            padding: 1.25rem;
            text-align: center;
        }

        .partnership-content h6 {
            color: var(--dark-grey);
        }

        /* Professional Form Styles */
        .professional-form-container {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border: 1px solid rgba(37, 99, 235, 0.1);
            position: relative;
        }

        .professional-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), #1e40af);
            border-radius: 20px 20px 0 0;
        }

        .form-header h5 {
            color: var(--dark-grey);
            font-size: 1.25rem;
        }

        .professional-input {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        .professional-input:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
            background: white;
            transform: translateY(-1px);
        }

        .professional-input:valid {
            border-color: #10b981;
            background: #f0fdf4;
        }

        .form-floating > label {
            color: var(--medium-grey);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-floating > .professional-input:focus ~ label,
        .form-floating > .professional-input:not(:placeholder-shown) ~ label {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Professional Submit Button */
        .professional-submit-btn {
            position: relative;
            overflow: hidden;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 1rem 2rem;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            border: none;
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
        }

        .professional-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
            background: linear-gradient(135deg, #1e40af, var(--primary-blue));
        }

        .professional-submit-btn:active {
            transform: translateY(-1px);
        }

        .btn-content {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .professional-submit-btn::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.6s ease;
        }

        .professional-submit-btn:hover::before {
            left: 100%;
        }

        /* Privacy Notice */
        .privacy-notice {
            background: rgba(37, 99, 235, 0.05);
            border: 1px solid rgba(37, 99, 235, 0.1);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            text-align: center;
        }

        .privacy-content {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--medium-grey);
        }

        .privacy-content i {
            color: var(--primary-blue);
        }

        /* Professional Success Message */
        .professional-success {
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }

        .success-content {
            display: flex;
            align-items: flex-start;
        }

        .success-content i {
            font-size: 1.5rem;
            margin-top: 0.25rem;
        }

        .success-content strong {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        /* Professional About Section Responsive Styles */
        @media (max-width: 1199.98px) {
            .professional-about-section {
                padding: 5rem 0;
            }

            .content-wrapper {
                padding: 2.5rem;
            }

            .professional-image-section {
                min-height: 550px;
            }

            .professional-content-section {
                min-height: 550px;
            }

            .professional-video-container {
                height: 350px;
                min-height: 350px;
            }
        }

        @media (max-width: 991.98px) {
            .professional-about-section {
                padding: 4rem 0;
            }

            .professional-image-section {
                min-height: 400px;
                margin-bottom: 0;
            }

            .professional-content-section {
                min-height: auto;
            }

            .content-wrapper {
                padding: 2rem;
            }

            .content-wrapper .row {
                display: block;
            }

            .content-wrapper .col-lg-6 {
                display: block;
                margin-bottom: 2rem;
            }

            .company-info-card {
                padding: 1.5rem;
                margin-bottom: 2rem;
                height: auto;
            }

            .highlight-card {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .highlight-icon-pro {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .metrics-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.75rem;
            }

            .professional-video-card {
                padding: 1.25rem;
                height: auto;
            }

            .professional-video-container {
                height: 300px;
                min-height: 300px;
            }
        }

        @media (max-width: 767.98px) {
            .professional-about-section {
                padding: 3rem 0;
            }

            .section-header h2 {
                font-size: 1.75rem;
            }

            .content-wrapper {
                padding: 1.5rem;
            }

            .company-info-card {
                padding: 1.25rem;
                border-radius: 15px;
            }

            .highlight-card {
                padding: 1.25rem;
                margin-bottom: 1rem;
                border-radius: 10px;
            }

            .highlight-icon-pro {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .highlight-content-pro h6 {
                font-size: 0.9rem;
            }

            .highlight-content-pro p {
                font-size: 0.8rem;
            }

            .trust-metrics {
                padding: 1.25rem;
                border-radius: 12px;
            }

            .metrics-grid {
                gap: 0.5rem;
            }

            .metric-number {
                font-size: 1.5rem;
            }

            .metric-label {
                font-size: 0.7rem;
            }

            .professional-video-card {
                padding: 1rem;
                border-radius: 15px;
                height: auto;
            }

            .video-header h5 {
                font-size: 1rem;
            }

            .professional-video-container {
                border-radius: 12px;
                height: 250px;
                min-height: 250px;
            }

            .video-play-btn {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }
        }

        @media (max-width: 575.98px) {
            .professional-about-section {
                padding: 2.5rem 0;
            }

            .section-badge {
                padding: 0.625rem 1.25rem;
                font-size: 0.8rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .section-header .lead {
                font-size: 1rem;
            }

            .content-wrapper {
                padding: 1rem;
            }

            .company-info-card {
                padding: 1rem;
                border-radius: 12px;
            }

            .company-info-card h3 {
                font-size: 1.1rem;
            }

            .company-info-card .lead {
                font-size: 1rem;
            }

            .highlight-card {
                padding: 1rem;
                border-radius: 8px;
            }

            .highlight-icon-pro {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
                margin-bottom: 0.75rem;
            }

            .highlight-content-pro h6 {
                font-size: 0.85rem;
            }

            .highlight-content-pro p {
                font-size: 0.75rem;
            }

            .trust-metrics {
                padding: 1rem;
                border-radius: 10px;
            }

            .metrics-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.25rem;
            }

            .metric-item {
                padding: 0.5rem;
            }

            .metric-number {
                font-size: 1.25rem;
            }

            .metric-label {
                font-size: 0.65rem;
            }

            .professional-video-card {
                padding: 0.75rem;
                border-radius: 12px;
            }

            .video-header h5 {
                font-size: 0.95rem;
            }

            .video-header p {
                font-size: 0.8rem;
            }

            .professional-video-container {
                border-radius: 10px;
            }

            .video-play-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .loading-text {
                font-size: 0.8rem;
            }
        }

        /* Left side content styles */
        .lead-content {
            padding-right: 2rem;
            animation: fadeInLeft 0.8s ease-out 0.3s both;
        }

        .highlight-item {
            transition: transform 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateX(5px);
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .trust-indicators {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .trust-stat {
            padding: 0.5rem;
        }

        .about-highlights h5 {
            color: var(--dark-grey);
            font-size: 1rem;
        }

        /* Professional Footer Styles */
        .professional-footer {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .professional-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23334155" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
            opacity: 0.1;
            pointer-events: none;
        }

        .footer-main {
            padding: 4rem 0 2rem 0;
            position: relative;
            z-index: 1;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-section {
            height: 100%;
        }

        .footer-logo img {
            filter: brightness(1.2);
        }

        .footer-description {
            color: #94a3b8;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary-blue);
            transform: translateX(5px);
        }

        .social-links h6 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(37, 99, 235, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .social-link:hover {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
        }

        .contact-info {
            font-size: 0.9rem;
        }

        .contact-item {
            color: #94a3b8;
            display: flex;
            align-items: center;
        }

        .contact-item i {
            color: var(--primary-blue);
            width: 20px;
        }

        .footer-legal p {
            color: #94a3b8;
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
        }

        .footer-meta {
            text-align: right;
        }

        .patent-info .badge {
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
        }

        .footer-links-inline {
            margin-top: 0.5rem;
        }

        .footer-link-inline {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-link-inline:hover {
            color: var(--primary-blue);
        }

        .separator {
            color: #64748b;
            margin: 0 0.5rem;
        }

        /* Interactive Demo Section Styles */
        .interactive-demo-section {
            position: relative;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            padding: 6rem 0;
            overflow: hidden;
        }

        .demo-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="demoGrid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23demoGrid)"/></svg>');
            opacity: 0.3;
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 40% 60%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
            animation: floatParticles 20s ease-in-out infinite;
        }

        @keyframes floatParticles {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

        .demo-header {
            animation: fadeInUp 0.8s ease-out both;
        }

        .demo-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .demo-title {
            color: var(--dark-grey);
            line-height: 1.2;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-blue), #1e40af, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .demo-subtitle {
            color: var(--medium-grey);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Feature Demo Cards */
        .demo-features {
            animation: fadeInLeft 0.8s ease-out 0.3s both;
        }

        .feature-demo-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .feature-demo-card:hover,
        .feature-demo-card.active {
            border-color: var(--primary-blue);
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
        }

        .feature-demo-card.active {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
        }

        .feature-demo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), #1e40af);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .feature-demo-content {
            flex: 1;
        }

        .feature-demo-content h5 {
            color: var(--dark-grey);
            margin-bottom: 0.5rem;
        }

        .feature-demo-arrow {
            color: var(--primary-blue);
            font-size: 1.1rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .feature-demo-card:hover .feature-demo-arrow,
        .feature-demo-card.active .feature-demo-arrow {
            opacity: 1;
            transform: translateX(5px);
        }

        /* Demo Stats */
        .demo-stats {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--medium-grey);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.25rem;
        }

        /* Enhanced Video Player */
        .demo-video-wrapper {
            animation: fadeInRight 0.8s ease-out 0.5s both;
        }

        .video-container-enhanced {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            background: linear-gradient(135deg, var(--light-blue), #ffffff);
        }

        .demo-video {
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(37, 99, 235, 0.3));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .video-container-enhanced:hover .video-overlay {
            opacity: 0.8;
        }

        .demo-video:not([data-playing]) ~ .video-overlay {
            opacity: 1;
        }

        .demo-video[data-playing] ~ .video-overlay {
            opacity: 0;
            pointer-events: none;
        }

        .play-button-large {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-size: 2rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .play-button-large:hover {
            transform: scale(1.1);
            background: white;
        }

        .video-title {
            text-align: center;
        }

        .video-controls {
            display: flex;
            justify-content: center;
        }

        .video-control-btn {
            border-radius: 25px;
            padding: 0.5rem 1.25rem;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .video-control-btn:hover {
            transform: translateY(-2px);
        }

        /* Demo CTA */
        .demo-cta {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 1px solid rgba(37, 99, 235, 0.1);
            animation: fadeInUp 0.8s ease-out 0.7s both;
        }

        .demo-cta h4 {
            color: var(--dark-grey);
        }

        .demo-cta .btn {
            border-radius: 25px;
            padding: 0.75rem 2rem;
            font-weight: 600;
        }