/* Integrations Page Styles */
.integration-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 5%;
    background-color: var(--secondary-color);
    border-radius: 24px;
    margin: 2rem 5%;
    overflow: hidden;
    position: relative;
    background-image: url('../images/integrations_banner.avif');
    background-size: cover;
}

.integration-hero-content {
    flex: 1;
    /* max-width: 600px; */
    z-index: 2;
}

.integration-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
        text-shadow: 0 2px 6px rgb(0 0 0 / 35%);
    padding-top: 5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.integration-hero p {
    font-size: 1.125rem;
        text-shadow: 0 2px 6px rgb(0 0 0 / 35%);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.integration-page-contact-us {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.integration-page-contact-us:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.featured-configuration {
    padding: 4rem 5%;
}

.featured-configuration h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.configuration-cards {
    display: flex;
    gap: 2rem;
}

.config-card {
    flex: 1;
    text-align: center;
    background-color: #F5F5F5;
    border-radius: 50px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.config-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}


/*.icon-graph {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    margin-top: 2rem;*/
/*}*/

/*.icon-container {*/
/*    position: absolute;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background-color: #fff;*/
/*    border-radius: 12px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
/*}*/

.slideshow-container {
    position: relative;
    width: 100%;
    padding-top: 70%; /* Aspect ratio 10:7 */
    overflow: hidden;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
    object-position: center bottom; 
    border-radius: 10px;
}

.top-banner {
    text-align: center;
}

.slideshow-image.active {
    opacity: 1;
}

/*.icon {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    object-fit: contain;*/
/*}*/

/*.top-left {*/
/*    top: 0;*/
/*    left: 20%;*/
/*}*/

/*.top-right {*/
/*    top: 0;*/
/*    right: 20%;*/
/*}*/

/*.center {*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*}*/

/*.bottom-left {*/
/*    bottom: 0;*/
/*    left: 20%;*/
/*}*/

/*.bottom-right {*/
/*    bottom: 0;*/
/*    right: 20%;*/
/*}*/

/*!* todo; update this later *!*/
/*!*.graph-lines {*!*/
/*!*    !*position: absolute;*!*!*/
/*!*    position: relative;*!*/
/*!*    top: 0;*!*/
/*!*    left: 0;*!*/
/*!*    width: 100%;*!*/
/*!*    height: 100%;*!*/
/*!*    z-index: -1;*!*/
/*!*}*!*/

/*!*.graph-lines line {*!*/
/*!*    stroke: #E5E7EB;*!*/
/*!*    stroke-width: 1;*!*/
/*!*}*!*/


/*!* Animation styles *!*/
/*.icon-container {*/
/*    transition: opacity 0.3s ease, transform 0.3s ease;*/
/*}*/

/*.sliding-left {*/
/*    transform: translateX(-100%);*/
/*    opacity: 0;*/
/*}*/

/*.sliding-right {*/
/*    transform: translateX(100%);*/
/*    opacity: 0;*/
/*}*/

.integrations-list {
    background-color: #F5F5F5;
    padding: 2rem 7% 4rem 7%;
}

.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tabs {
    display: flex;
    gap: 1rem;
    background-color: #F3F4F6;
    padding: 0.5rem;
    border-radius: 2rem;
}

.tab {
    padding: 0.5rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    color: #6B7280;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: #3742FA;
    color: white;
}

.integration-count {
    color: #6B7280;
    margin-bottom: 2rem;
    text-align: center;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /*grid-template-columns: repeat(3, minmax(300px, 1fr));*/
    gap: 2rem;
}

.integration-card {
    border: 1px solid #E5E7EB;
    border-radius: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: white;
    aspect-ratio: 1/0.8;
    /*max-width: 500px; !* add this line *!*/
    /*max-height: 700px; !* add this line *!*/
}

.integration-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /*align-items: center;*/
    margin-bottom: 1.5rem;
}

/*todo: update the integration-icon images to .svg, all of them to be squares*/
.integration-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 1rem;
}

.integration-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.integration-description {
    color: #6B7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    min-height: 100px;
}

.learn-more {
    color: #3742FA;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.learn-more::after {
    content: ' →';
}


@media (max-width: 1024px) {
    .integration-hero {
        flex-direction: column;
        text-align: center;
    }

    .integration-hero h1 {
        font-size: 2.5rem;
        padding-top: 4rem;
    }

    .integration-hero-content {
        margin-bottom: 2rem;
    }

}

@media (max-width: 768px) {
    .integration-hero h1 {
        font-size: 2.5rem;
        padding-top: 2rem;
    }

    .integration-hero p {
        font-size: 1rem;
    }

    .configuration-cards {
        flex-direction: column;
    }

    .tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .integration-card {
        aspect-ratio: auto;
    }

    .integration-description {
        min-height: auto;
    }
}


@media (max-width: 480px) {
    .tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   PROCESS SECTION - 4-Step Implementation
   ======================================== */
.process-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 80px 5% 100px;
    box-sizing: border-box;
    background-color: #fff;
}

.process-header {
    width: 100%;
    padding-bottom: 60px;
}

.process-preheader {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.process-preheader-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(270deg, rgb(84, 208, 227) -17%, rgb(57, 109, 255) 49%, rgb(82, 64, 219) 115%);
    border-radius: 4px;
}

.process-preheader-text {
    font-size: 14px;
    font-weight: 500;
    color: rgb(57, 107, 246);
    letter-spacing: -0.02em;
}

.process-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #000;
    margin: 0;
}

.process-boxes-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    position: relative;
}

.process-box {
    background-color: #ffffff;
    border: 1px solid #d0d2d6;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    flex: 1 0 0;
    position: relative;
    min-height: 257px;
}

.process-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.process-icon {
    width: 28px;
    height: 28px;
    background-size: 100% 100%;
    flex-shrink: 0;
}

.process-icon.discover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' x2='1' y1='0.129' y2='0.871'%3E%3Cstop offset='0' stop-color='rgb(188,230,242)'/%3E%3Cstop offset='0.5' stop-color='rgb(50, 103, 253)'/%3E%3Cstop offset='1' stop-color='rgb(188,230,242)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 21.968 1.469 C 22.586 1.123 22.989 0.899 23.31 0.771 C 23.612 0.651 23.744 0.657 23.834 0.68 C 23.923 0.703 24.039 0.761 24.236 1.009 C 24.447 1.274 24.681 1.663 25.038 2.263 L 26.509 4.736 C 26.866 5.337 27.097 5.727 27.228 6.036 C 27.351 6.327 27.342 6.447 27.320 6.524 C 27.299 6.602 27.243 6.713 26.985 6.907 C 26.71 7.112 26.309 7.338 25.691 7.685 L 20.448 10.621 C 19.863 10.949 19.485 11.159 19.185 11.278 C 18.904 11.39 18.79 11.381 18.717 11.362 C 18.645 11.342 18.541 11.294 18.354 11.059 C 18.155 10.808 17.934 10.439 17.593 9.867 L 16.021 7.225 C 15.672 6.637 15.447 6.256 15.319 5.954 C 15.198 5.67 15.208 5.555 15.227 5.483 C 15.247 5.41 15.297 5.306 15.545 5.119 C 15.809 4.921 16.197 4.702 16.798 4.365 Z' fill='url(%23g1)'/%3E%3Cpath d='M 9.517 9.268 L 14.116 6.692 C 14.285 7.042 14.521 7.439 14.788 7.887 L 16.407 10.607 C 16.651 11.018 16.869 11.384 17.079 11.684 L 15.016 12.839 L 20.584 25.891 C 20.81 26.42 20.558 27.029 20.023 27.252 C 19.487 27.474 18.87 27.226 18.644 26.697 L 14 15.811 L 9.356 26.697 C 9.131 27.226 8.514 27.474 7.978 27.252 C 7.442 27.029 7.19 26.42 7.416 25.891 L 12.346 14.335 C 11.809 14.635 11.453 14.831 11.169 14.944 C 10.888 15.056 10.773 15.047 10.701 15.027 C 10.628 15.008 10.524 14.96 10.338 14.724 C 10.139 14.473 9.917 14.105 9.577 13.532 L 8.741 12.127 C 8.391 11.54 8.166 11.158 8.038 10.856 C 7.917 10.573 7.927 10.457 7.947 10.385 C 7.966 10.312 8.016 10.208 8.264 10.022 C 8.528 9.823 8.916 9.604 9.517 9.268 Z' fill='url(%23g1)'/%3E%3Cpath d='M 6.836 11.595 L 2.309 14.13 C 1.691 14.477 1.289 14.703 1.015 14.909 C 0.757 15.102 0.701 15.213 0.679 15.291 C 0.658 15.368 0.649 15.488 0.772 15.779 C 0.903 16.088 1.133 16.478 1.49 17.078 C 1.847 17.678 2.081 18.067 2.292 18.332 C 2.489 18.581 2.605 18.638 2.694 18.662 C 2.784 18.685 2.916 18.691 3.218 18.571 C 3.539 18.443 3.942 18.218 4.56 17.872 L 9.063 15.35 C 8.852 15.05 8.634 14.684 8.39 14.273 L 7.507 12.789 C 7.24 12.341 7.005 11.945 6.836 11.595 Z' fill='url(%23g1)'/%3E%3C/svg%3E");
}

.process-icon.design {
    width: 31px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 30'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' x2='1' y1='0.173' y2='0.827'%3E%3Cstop offset='0' stop-color='rgb(188, 230, 242)'/%3E%3Cstop offset='0.5' stop-color='rgb(50, 103, 253)'/%3E%3Cstop offset='1' stop-color='rgb(188,230,242)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 23.134 15.312 L 22.084 15.312 C 21.903 14.745 21.669 14.202 21.383 13.687 L 22.13 12.964 C 22.997 12.124 22.997 10.761 22.13 9.92 L 21.329 9.147 C 20.914 8.743 20.348 8.517 19.757 8.517 C 19.166 8.517 18.601 8.743 18.182 9.147 L 17.435 9.87 C 16.903 9.595 16.342 9.366 15.755 9.191 L 15.755 8.174 C 15.755 6.985 14.76 6.022 13.532 6.022 L 12.401 6.022 C 11.172 6.022 10.177 6.985 10.177 8.174 L 10.177 9.191 C 9.591 9.366 9.03 9.594 8.498 9.87 L 7.751 9.147 C 6.881 8.306 5.473 8.306 4.605 9.147 L 3.805 9.92 C 2.937 10.759 2.937 12.123 3.805 12.963 L 4.552 13.685 C 4.27 14.202 4.034 14.745 3.852 15.312 L 2.804 15.312 C 1.575 15.312 0.58 16.276 0.58 17.463 L 0.58 18.558 C 0.58 19.745 1.575 20.71 2.804 20.71 L 3.854 20.71 C 4.035 21.276 4.27 21.82 4.554 22.334 L 3.806 23.058 C 2.938 23.899 2.938 25.26 3.806 26.102 L 4.605 26.876 C 5.022 27.278 5.588 27.506 6.178 27.506 C 6.767 27.506 7.333 27.278 7.752 26.876 L 8.498 26.153 C 9.03 26.427 9.592 26.656 10.178 26.831 L 10.178 27.848 C 10.178 29.037 11.173 30 12.402 30 L 13.532 30 C 14.761 30 15.756 29.037 15.756 27.848 L 15.756 26.831 C 16.342 26.656 16.904 26.428 17.436 26.153 L 18.183 26.876 C 18.598 27.278 19.164 27.506 19.756 27.506 C 20.345 27.506 20.911 27.278 21.328 26.876 L 22.128 26.102 C 22.996 25.262 22.996 23.899 22.126 23.059 L 21.38 22.337 C 21.664 21.82 21.9 21.277 22.081 20.711 L 23.132 20.711 C 24.361 20.711 25.356 19.746 25.356 18.558 L 25.356 17.464 C 25.358 16.276 24.363 15.312 23.134 15.312 Z M 12.968 22.93 C 10.165 22.93 7.885 20.724 7.885 18.011 C 7.885 15.298 10.165 13.092 12.968 13.092 C 15.771 13.092 18.052 15.299 18.052 18.011 C 18.052 20.724 15.772 22.93 12.968 22.93 Z M 29.56 3.582 L 29.156 3.582 C 29.086 3.365 28.994 3.154 28.885 2.956 L 29.173 2.678 C 29.507 2.353 29.507 1.829 29.173 1.504 L 28.864 1.206 C 28.703 1.05 28.483 0.963 28.256 0.963 C 28.029 0.963 27.809 1.05 27.649 1.206 L 27.36 1.483 C 27.156 1.377 26.942 1.29 26.714 1.222 L 26.714 0.829 C 26.714 0.37 26.331 0 25.856 0 L 25.421 0 C 24.946 0 24.564 0.37 24.564 0.829 L 24.564 1.222 C 24.338 1.29 24.12 1.377 23.916 1.483 L 23.63 1.206 C 23.294 0.881 22.751 0.881 22.416 1.206 L 22.109 1.502 C 21.773 1.827 21.773 2.353 22.109 2.677 L 22.396 2.955 C 22.285 3.154 22.193 3.364 22.125 3.581 L 21.719 3.581 C 21.243 3.581 20.862 3.954 20.862 4.412 L 20.862 4.833 C 20.862 5.292 21.243 5.664 21.719 5.664 L 22.125 5.664 C 22.193 5.882 22.285 6.093 22.396 6.291 L 22.107 6.569 C 21.773 6.893 21.773 7.418 22.107 7.742 L 22.416 8.041 C 22.578 8.197 22.797 8.284 23.025 8.284 C 23.252 8.284 23.471 8.197 23.632 8.041 L 23.919 7.763 C 24.125 7.87 24.34 7.957 24.567 8.025 L 24.567 8.416 C 24.567 8.875 24.948 9.247 25.423 9.247 L 25.859 9.247 C 26.334 9.247 26.717 8.875 26.717 8.416 L 26.717 8.026 C 26.942 7.958 27.161 7.871 27.363 7.764 L 27.652 8.042 C 27.814 8.198 28.032 8.285 28.259 8.285 C 28.486 8.285 28.704 8.198 28.866 8.042 L 29.174 7.744 C 29.509 7.42 29.509 6.893 29.174 6.571 L 28.888 6.293 C 28.999 6.094 29.089 5.883 29.159 5.665 L 29.565 5.665 C 30.04 5.665 30.422 5.294 30.422 4.835 L 30.422 4.412 C 30.419 3.955 30.035 3.582 29.56 3.582 Z M 25.639 6.521 C 24.559 6.521 23.68 5.671 23.68 4.623 C 23.68 3.578 24.559 2.727 25.639 2.727 C 26.72 2.727 27.601 3.578 27.601 4.623 C 27.601 5.671 26.721 6.521 25.639 6.521 Z' fill='url(%23g1)'/%3E%3C/svg%3E");
}

.process-icon.testing {
    width: 29px;
    height: 29px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' x2='1' y1='0.172' y2='0.828'%3E%3Cstop offset='0' stop-color='rgb(188,230,242)'/%3E%3Cstop offset='0.5' stop-color='rgb(50, 103, 253)'/%3E%3Cstop offset='1' stop-color='rgb(188,230,242)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 11.425 2.84 C 13.177 0.387 16.823 0.387 18.575 2.84 L 18.854 3.23 C 19.163 3.662 19.68 3.893 20.208 3.835 L 21.451 3.697 C 24.25 3.386 26.614 5.75 26.303 8.549 L 26.165 9.792 C 26.107 10.32 26.338 10.837 26.77 11.146 L 27.16 11.425 C 29.613 13.177 29.613 16.823 27.16 18.575 L 26.77 18.854 C 26.338 19.163 26.107 19.68 26.165 20.208 L 26.303 21.451 C 26.614 24.25 24.25 26.614 21.451 26.303 L 20.208 26.165 C 19.68 26.107 19.163 26.338 18.854 26.77 L 18.575 27.16 C 16.823 29.613 13.177 29.613 11.425 27.16 L 11.146 26.77 C 10.837 26.338 10.32 26.107 9.792 26.165 L 8.549 26.303 C 5.75 26.614 3.386 24.25 3.697 21.451 L 3.835 20.208 C 3.893 19.68 3.662 19.163 3.23 18.854 L 2.84 18.575 C 0.387 16.823 0.387 13.177 2.84 11.425 L 3.23 11.146 C 3.662 10.837 3.893 10.32 3.835 9.792 L 3.697 8.549 C 3.386 5.75 5.75 3.386 8.549 3.697 L 9.792 3.835 C 10.32 3.893 10.837 3.662 11.146 3.23 Z M 18.358 11.035 L 13.535 15.858 L 11.642 13.964 C 11.07 13.393 10.143 13.393 9.571 13.964 C 8.999 14.536 8.999 15.464 9.571 16.036 L 12.235 18.7 C 12.953 19.418 14.118 19.418 14.836 18.7 L 20.429 13.106 C 21.001 12.535 21.001 11.607 20.429 11.035 C 19.857 10.463 18.93 10.463 18.358 11.035 Z' fill='url(%23g1)'/%3E%3C/svg%3E");
}

.process-icon.expand {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' x2='1' y1='0.129' y2='0.871'%3E%3Cstop offset='0' stop-color='rgb(188,230,242)'/%3E%3Cstop offset='0.5' stop-color='rgb(50, 103, 253)'/%3E%3Cstop offset='1' stop-color='rgb(188,230,242)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='2' y='18' width='5' height='8' rx='1.5' fill='url(%23g1)'/%3E%3Crect x='11.5' y='12' width='5' height='14' rx='1.5' fill='url(%23g1)'/%3E%3Crect x='21' y='5' width='5' height='21' rx='1.5' fill='url(%23g1)'/%3E%3Cpolygon points='22,5 23.5,2 25,5' fill='url(%23g1)'/%3E%3C/svg%3E");
}

.process-box-title {
    font-size: 18px;
    font-weight: 600;
    color: rgb(57, 107, 246);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.process-box-text {
    font-size: 18px;
    font-weight: 400;
    color: #5f6266;
    line-height: 1.4;
    margin-bottom: auto;
}

.process-box-footer {
    margin-top: 46px;
}

.process-box-note {
    font-size: 14px;
    color: #5f6266;
    margin-bottom: 4px;
}

.process-box-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #5f6266;
}

.process-box-time svg {
    width: 16px;
    height: 16px;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    flex-shrink: 0;
    align-self: center;
}

.process-arrow svg {
    width: 25px;
    height: 17px;
}

.process-cta {
    margin-top: 60px;
}

.btn-process-demo {
    display: inline-block;
    background-color: #396bf6;
    border-radius: 112px;
    border: none;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-process-demo:hover {
    background-color: #2554d4;
    color: #ffffff;
}

@media (max-width: 991px) {
    .process-section {
        padding: 60px 5% 80px;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .process-boxes-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .process-box {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 40px 5% 60px;
    }

    .process-title {
        font-size: 1.8rem;
    }
}
