.demo-request-container {
                min-height: 100vh;
                background: #f3f4f6;
                padding: 100px 20px;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }

            .form-wrapper {
                max-width: 800px;
                margin: 0 auto;
                background: white;
                border-radius: 20px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
                overflow: hidden;
            }

            .form-header {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 50px 40px;
                text-align: center;
            }

            .form-header h1 {
                margin: 0 0 10px;
                font-size: 36px;
                font-weight: 700;
            }

            .form-header p {
                margin: 0;
                font-size: 18px;
                opacity: 0.95;
            }

            .form-body {
                padding: 50px 40px;
            }

            .success-message {
                background: linear-gradient(135deg, #10b981 0%, #059669 100%);
                color: white;
                padding: 20px;
                border-radius: 12px;
                margin-bottom: 30px;
                display: flex;
                align-items: center;
                gap: 15px;
                animation: slideDown 0.5s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .success-icon {
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                flex-shrink: 0;
            }

            .form-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

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

            .form-group.full-width {
                grid-column: 1 / -1;
            }

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

            .form-label .required {
                color: #ef4444;
                margin-left: 2px;
            }

            .form-input,
            .form-textarea {
                padding: 14px 16px;
                border: 2px solid #e5e7eb;
                border-radius: 10px;
                font-size: 15px;
                transition: all 0.3s ease;
                background: #f9fafb;
                width: 100%;
            }

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

            .form-input:focus,
            .form-textarea:focus {
                outline: none;
                border-color: #667eea;
                background: white;
                box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            }

            .form-input.error,
            .form-textarea.error {
                border-color: #ef4444;
                background: #fef2f2;
            }

            .error-message {
                color: #ef4444;
                font-size: 13px;
                margin-top: 6px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .checkbox-group {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                margin-top: 10px;
            }

            .checkbox-input {
                width: 20px;
                height: 20px;
                border: 2px solid #e5e7eb;
                border-radius: 4px;
                margin-top: 2px;
                cursor: pointer;
            }

            .checkbox-label {
                font-size: 14px;
                color: #4b5563;
                line-height: 1.5;
            }

            .submit-button {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 16px 40px;
                border: none;
                border-radius: 12px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                margin-top: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .submit-button:hover:not(:disabled) {
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
            }

            .submit-button:disabled {
                opacity: 0.6;
                cursor: not-allowed;
            }

            .spinner {
                width: 20px;
                height: 20px;
                border: 3px solid rgba(255, 255, 255, 0.3);
                border-top-color: white;
                border-radius: 50%;
                animation: spin 0.8s linear infinite;
            }

            @keyframes spin {
                to {
                    transform: rotate(360deg);
                }
            }

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

                .form-header {
                    padding: 40px 30px;
                }

                .form-header h1 {
                    font-size: 28px;
                }

                .form-body {
                    padding: 40px 30px;
                }

                .demo-request-container {
                    padding: 80px 15px;
                }
            }

            /* Contact Info Section */
            .contact-info-section {
                max-width: 1000px;
                margin: 60px auto 0;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }

            .contact-card {
                background: white;
                padding: 30px;
                border-radius: 16px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease;
            }

            .contact-card:hover {
                transform: translateY(-5px);
            }

            .contact-card h3 {
                color: #667eea;
                margin-top: 0;
                margin-bottom: 20px;
                font-size: 20px;
            }

            .contact-detail {
                margin-bottom: 15px;
                font-size: 15px;
                color: #4b5563;
                display: flex;
                gap: 10px;
            }

            .contact-detail strong {
                color: #1f2937;
                min-width: 70px;
            }

            .office-group img {
                width: 40px;
                height: 40px;
                border-radius: 50%;
            }

            /* Modern Contact Cards */
            .contact-info-section {
                max-width: 1200px;
                margin: 80px auto 0;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
            }

            .contact-card {
                background: white;
                padding: 40px;
                border-radius: 24px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                border: 1px solid rgba(0, 0, 0, 0.05);
                position: relative;
                overflow: hidden;
            }

            .contact-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
                border-color: rgba(102, 126, 234, 0.3);
            }

            .card-icon {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 25px;
                color: #667eea;
            }

            .card-icon svg {
                width: 32px;
                height: 32px;
            }

            .contact-card h3 {
                color: #1f2937;
                font-size: 24px;
                font-weight: 700;
                margin: 0 0 30px 0;
            }

            .office-group {
                margin-bottom: 25px;
                padding-bottom: 25px;
                border-bottom: 1px solid #f3f4f6;
            }

            .office-group:last-child {
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
            }

            .office-group h4 {
                margin: 0 0 8px 0;
                color: #4b5563;
                font-size: 16px;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .office-group p {
                margin: 0 0 8px 0;
                color: #6b7280;
                font-size: 14px;
                line-height: 1.6;
            }

            .phone-link {
                color: #667eea;
                font-weight: 600;
                text-decoration: none;
                font-size: 14px;
                display: inline-flex;
                align-items: center;
                transition: color 0.2s;
            }

            .phone-link:hover {
                color: #764ba2;
            }

            .email-text {
                color: #6b7280;
                margin-bottom: 15px;
            }

            .email-link {
                font-size: 20px;
                font-weight: 700;
                color: #667eea;
                text-decoration: none;
                transition: color 0.2s;
            }

            .email-link:hover {
                color: #764ba2;
            }

            /* Trusted Section */
            .trusted-section {
                text-align: center;
                padding: 60px 20px;
                border-radius: 24px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            }

            .trusted-section h2 {
                font-size: 32px;
                font-weight: 800;
                background: linear-gradient(135deg, #1f2937 0%, #4b5563 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                margin: 0 0 15px 0;
            }

            .trusted-section p {
                color: #6b7280;
                font-size: 18px;
                margin: 0 0 40px 0;
            }

            .trusted-logos {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                gap: 30px;
                direction: ltr;
                max-width: 1200px;
                margin: 0 auto;
                /* opacity: 0.7; */
            }

            /* .logo-item {
                    font-size: 18px;
                    font-weight: 600;
                    color: #9ca3af;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    padding: 10px 20px;
                    background: #f9fafb;
                    border-radius: 50px;
                } */

            .logo-item img {
                width: 150px;
                height: 100px;
                object-fit: contain;
            }

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

                .trusted-section h2 {
                    font-size: 24px;
                }
            }

            .signup-form-container {
                min-height: 100vh;
                /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
                padding: 100px 20px;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }

            .form-wrapper {
                max-width: 900px;
                margin: 0 auto;
                background: white;
                border-radius: 20px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                overflow: hidden;
            }

            .form-header {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 50px 40px;
                text-align: center;
            }

            .form-header h1 {
                margin: 0 0 10px;
                font-size: 36px;
                font-weight: 700;
            }

            .form-header p {
                margin: 0;
                font-size: 18px;
                opacity: 0.95;
            }

            .form-body {
                padding: 50px 40px;
            }

            .success-message {
                background: linear-gradient(135deg, #10b981 0%, #059669 100%);
                color: white;
                padding: 20px;
                border-radius: 12px;
                margin-bottom: 30px;
                display: flex;
                align-items: center;
                gap: 15px;
                animation: slideDown 0.5s ease;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .success-icon {
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                font-size: 24px;
                flex-shrink: 0;
            }

            .form-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

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

            .form-group.full-width {
                grid-column: 1 / -1;
            }

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

            .form-label .required {
                color: #ef4444;
                margin-left: 2px;
            }

            .form-input {
                padding: 14px 16px;
                border: 2px solid #e5e7eb;
                border-radius: 10px;
                font-size: 15px;
                transition: all 0.3s ease;
                background: #f9fafb;
            }

            .form-input:focus {
                outline: none;
                border-color: #667eea;
                background: white;
                box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            }

            .form-input.error {
                border-color: #ef4444;
                background: #fef2f2;
            }

            .error-message {
                color: #ef4444;
                font-size: 13px;
                margin-top: 6px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .section-title {
                font-size: 20px;
                font-weight: 700;
                color: #1f2937;
                margin: 40px 0 25px;
                padding-bottom: 12px;
                border-bottom: 2px solid #e5e7eb;
                grid-column: 1 / -1;
            }

            .section-title:first-child {
                margin-top: 0;
            }

            .submit-button {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 16px 40px;
                border: none;
                border-radius: 12px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                width: 100%;
                margin-top: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .submit-button:hover:not(:disabled) {
                transform: translateY(-2px);
                box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
            }

            .submit-button:disabled {
                opacity: 0.6;
                cursor: not-allowed;
            }

            .spinner {
                width: 20px;
                height: 20px;
                border: 3px solid rgba(255, 255, 255, 0.3);
                border-top-color: white;
                border-radius: 50%;
                animation: spin 0.8s linear infinite;
            }

            @keyframes spin {
                to {
                    transform: rotate(360deg);
                }
            }

            .captcha-notice {
                background: #f3f4f6;
                padding: 15px;
                border-radius: 10px;
                font-size: 13px;
                color: #6b7280;
                text-align: center;
                margin-top: 20px;
                grid-column: 1 / -1;
            }

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

                .form-header {
                    padding: 40px 30px;
                }

                .form-header h1 {
                    font-size: 28px;
                }

                .form-body {
                    padding: 40px 30px;
                }

                .signup-form-container {
                    padding: 40px 15px;
                }

                .trusted-section h2 {
                    font-size: 24px;
                }
            }

            .general-error {
                background: #fef2f2;
                border-left: 4px solid #ef4444;
                padding: 15px;
                border-radius: 8px;
                margin-bottom: 25px;
                color: #991b1b;
            }


            .logo-item img {
                width: 150px;
                height: 100px;
                object-fit: contain;
            }

        /* Integrations Section */
        .integrations {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0);
        }

        .integration-orbit {
            position: relative;
            width: 500px;
            height: 500px;
            margin: 60px auto 20px;
        }

        .orbit-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            z-index: 10;
        }

        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 1px dashed var(--color-primary);
            border-radius: 50%;
        }

        .ring-1 {
            width: 300px;
            height: 300px;
            animation: rotate 20s linear infinite;
        }

        .ring-2 {
            width: 450px;
            height: 450px;
            animation: rotate 30s linear infinite reverse;
        }

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

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .orbit-item {
            position: absolute;
            width: 60px;
            /* height: 60px; */
            /* background: black; */
            /* border: 1px solid black; */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--text-main);
            transition: 0.3s;
        }

        .orbit-item:hover {
            background: black;
            transform: scale(1.2);
        }

        .item-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .item-2 {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .item-3 {
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

        .item-4 {
            top: 10%;
            left: 10%;
        }

        .item-5 {
            top: 10%;
            right: 10%;
        }

        .item-6 {
            bottom: 10%;
            left: 10%;
            transform: translateX(-50%);
        }

        .orbit-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .md-_w_2 {
            width: 50% !important;
        }

        .bg-purple-500 {
            background: rgb(168, 85, 247) !important;
        }

        .bg-purple-600 {
            background: rgb(147, 51, 234) !important;
        }

        .bg-light {
            background-color: #f3f4f6 !important;
        }

        .left-translate-x-2 {
            --tw-translate-x: -50%;
        }

        @media (max-width: 768px) {
            .md-_w_2 {
                width: 100% !important;
            }
        }
        /* Glowing Button Animation */
        @keyframes glow-pulse {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(92, 74, 228, 0.4), 0 0 40px rgba(92, 74, 228, 0.2);
            }

            50% {
                box-shadow: 0 0 30px rgba(92, 74, 228, 0.6), 0 0 60px rgba(92, 74, 228, 0.3);
            }
        }

        .glow-button {
            animation: glow-pulse 2s ease-in-out infinite;
        }

        /* Timeline Connector */
        .timeline-connector {
            position: absolute;
            left: 23px;
            top: 60px;
            bottom: -40px;
            width: 2px;
            background: linear-gradient(to bottom, #5C4AE4 0%, #EFEDFF 100%);
        }

        .timeline-item:last-child .timeline-connector {
            display: none;
        }

        /* Fade in animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Stagger animation delays */
        .timeline-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .timeline-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .timeline-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .timeline-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .timeline-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .timeline-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        .timeline-item:nth-child(7) {
            animation-delay: 0.7s;
        }

        .timeline-item:nth-child(8) {
            animation-delay: 0.8s;
        }

        /* Value card hover effect */
        .value-card {
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .slide-in-right {
            animation: slideInRight 0.5s ease-out forwards;
            opacity: 0;
        }

        .scale-in {
            animation: scaleIn 0.5s ease-out forwards;
            opacity: 0;
        }

        /* Stagger delays */
        .delay-100 {
            animation-delay: 0.1s;
        }

        .delay-200 {
            animation-delay: 0.2s;
        }

        .delay-300 {
            animation-delay: 0.3s;
        }

        .delay-400 {
            animation-delay: 0.4s;
        }

        .delay-500 {
            animation-delay: 0.5s;
        }

        .delay-600 {
            animation-delay: 0.6s;
        }

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

        .integration-card:hover {
            transform: scale(1.02) translateY(-4px);
            box-shadow: 0 20px 40px rgba(92, 74, 228, 0.12);
        }

        .integration-card:active {
            transform: scale(0.98);
        }

        /* Category pill hover */
        .category-pill {
            transition: all 0.2s ease;
        }

        .category-pill:hover {
            transform: translateX(4px);
            background: linear-gradient(135deg, #5C4AE4 0%, #7C6AFF 100%);
        }

        /* Flow line animation */
        @keyframes flowLine {
            0% {
                stroke-dashoffset: 1000;
            }

            100% {
                stroke-dashoffset: 0;
            }
        }

        .flow-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: flowLine 2s ease-out forwards;
        }

        /* Geometric accent */
        .geometric-accent {
            position: absolute;
            border-radius: 24px;
            opacity: 0.05;
            z-index: 0;
        }
        .writing-mode-vertical {
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .tab-btn {
            @apply bg-gray-100 text-gray-600;
        }

        .tab-button {
            color: #6B7280;
            border-color: transparent;
        }

        .tab-button:hover {
            color: #667eea;
            border-color: #667eea;
        }

        .tab-button.active {
            color: #667eea;
            border-color: #667eea;
            background-color: #f9fafb;
        }

        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .hex-logo {
        width: 95px;
        height: 105px;
        background: #efefef;
        border: 1px solid #eee;
        border-radius: 14px;
        padding: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .hex-logo-big {
        width: 200px;
        height: 230px;
        background: #efefef;
        border-radius: 20px;
        border: 1px solid #ddd;
        padding: 20px;
        clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    }

    .tab-btn {
        background-color: #f9fafb;
        color: #000;
    }

    .tab-btn.active {
        background-color: #5C4AE4;
        color: #fff;
    }

    .active-tab {
        background: #5C4AE4 !important;
        color: white !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .step-number {
        width: 65px;
        height: 65px;
        background: #4F46E5;
        color: white;
        font-size: 20px;
        font-weight: bold;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 rgba(79, 70, 229, 0.6);
    }

    /* Glow animation */
    @keyframes glowPulse {
        0% { box-shadow: 0 0 0 rgba(79, 70, 229, 0.6); }
        50% { box-shadow: 0 0 25px rgba(79, 70, 229, 1); }
        100% { box-shadow: 0 0 0 rgba(79, 70, 229, 0.6); }
    }

    /* Sequential glowing with delays */
    .glow-1 { animation: glowPulse 2s infinite; animation-delay: 0s; }
    .glow-2 { animation: glowPulse 2s infinite; animation-delay: 2s; }
    .glow-3 { animation: glowPulse 2s infinite; animation-delay: 4s; }

    /* Make circles smaller on mobile */
    @media (max-width: 768px) {
        .step-number {
            width: 55px;
            height: 55px;
            font-size: 18px;
        }
    }

    @keyframes blob {
            0% {
                transform: translate(0px, 0px) scale(1);
            }

            33% {
                transform: translate(30px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }

            100% {
                transform: translate(0px, 0px) scale(1);
            }
        }

        .animate-blob {
            animation: blob 7s infinite;
        }

        .animation-delay-2000 {
            animation-delay: 2s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translate3d(40px, 0, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.8s ease-out 0.2s forwards;
            /* Added delay */
            opacity: 0;
            /* Start hidden */
        }


        /* Chart container fix */
        .canvas-wrap{position:relative;height:380px}


        /* responsive tweaks for very small screens */
        @media (max-width:420px){
        .text-xs-sm{font-size:12px}
        }

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

                100% {
                    transform: translateX(-50%);
                }
            }

            .logo-slider-track {
                animation: scroll-logos 60s linear infinite;
                width: fit-content;
                display: flex;
                flex-wrap: nowrap;
            }

            .logo-slider-track:hover {
                animation-play-state: paused;
            }

            .logo-slide {
                min-width: 200px;
            }
            .tab-button {
  @apply text-gray-600 py-3 px-2 rounded-md font-medium hover:text-gray-900 transition;
  background: transparent;
  border: none;
  cursor: pointer;
}
.tab-button.active {
  @apply text-primary border-b-2 border-primary;
  outline: none;
}

/* Use the following class to hide panels when JS not active */
.tab-panel.hidden {
  display: none;
}

/* Small responsive tweak for hero device */
@media (max-width: 1024px) {
  .hero-device {
    display: none;
  }
}

/* Fallback shadow for images */
img {
  image-rendering: optimizeQuality;
}
.tab-underline { transform-origin: left center; transition: transform .25s ease; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* Card visual */
.integration-card {
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s ease;
  will-change: transform;
}
.integration-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 40px rgba(76,63,180,0.08);
}

/* Nice pill active */
.category-pill[data-active="true"] {
  background: linear-gradient(90deg, rgba(92,74,228,1) 0%, rgba(124,106,255,1) 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(76,63,180,0.12);
}

/* subtle divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.05));
}

/* sticky filter bar background (frosted) */
.filters-sticky {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* hidden reveal animation helper used by JS */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* small responsive tuning */
@media (max-width: 768px) {
  .integration-card { padding: 1.25rem; }
}