:root {
    --primary: #1973fe;
    --secondary: #0a1f44;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(25deg, #1973fe, #1973fe);
    --gradient-secondary: linear-gradient(230deg, #0a1f44, #020024);

    /* EXTRA COLORS */
    --Green: #00a761;
    --Yellow: #f2b100;
    --Blue: #06b7f9;
    --Purple: #7a7aff;

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #0a1f44;

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 4px;

    --space-between-blocks: 2rem;
    /* for mobiles */
    --space-between-blocks-small-screens: 1rem;
}

@font-face {
    font-family: Preevio;
    src: url(https://app.frontendor.com/version3/assets/ui-library/Blocks/blocks__assets/fonts/Preevio_Regular.otf);
    font-weight: 400;
    letter-spacing: 0.5px;
}

@font-face {
    font-family: Preevio;
    src: url(https://app.frontendor.com/version3/assets/ui-library/Blocks/blocks__assets/fonts/Preevio_Medium.otf);
    font-weight: 700;
    letter-spacing: 0.5px;
}

body {
    font-family: 'Preevio';
    color: var(--text-primary);
	overflow-x: hidden;
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 1400px !important;
    }
}

.space-between-blocks {
    padding-top: var(--space-between-blocks-small-screens);
    padding-bottom: var(--space-between-blocks-small-screens);
}

@media (min-width: 992px) {
    .space-between-blocks {
        padding-top: var(--space-between-blocks);
        padding-bottom: var(--space-between-blocks);
    }
}

/* ----------------- BUTTONS ------------------- */

button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    font-size: 0.87rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: 0.2s all;
    box-shadow: 0 10px 30px 0px rgb(0 0 0 / 5%);
}

.btn,
.btn:hover,
.btn:focus {
    outline: none;
}

.btn:hover,
.btn:focus {
    transform: scale(1.05);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    background: white;
    color: var(--text-primary);
    border: 1px solid #e4e5e7;
}

.btn-primary--empty,
.btn-primary--empty:hover,
.btn-primary--empty:focus {
    color: var(--primary);
}

.btn-primary--outline,
.btn-primary--outline:hover,
.btn-primary--outline:focus {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn--green,
.btn--green:hover,
.btn--green:focus {
    background: var(--Green);
    color: white;
}

.btn--yellow,
.btn--green:hover,
.btn--green:focus {
    background: var(--Yellow);
    color: white;
}

.btn--purple,
.btn--green:hover,
.btn--green:focus {
    background: var(--Purple);
    color: white;
}

.btn--blue,
.btn--green:hover,
.btn--green:focus {
    background: var(--blue);
    color: white;
}

.btn-sm {
    padding: 0.8rem;
}

.highlight {
    color: var(--primary);
}

.highlight--green {
    color: var(--Green);
}
.highlight--yellow {
    color: var(--Yellow);
}
.highlight--blue {
    color: var(--Blue);
}
.highlight--purple {
    color: var(--Purple);
}

/* block header */

.block__header {
    margin-bottom: 2rem;
}

.block__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.block__title--big {
    font-weight: 700;
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }

    .block__title--big {
        font-size: 4.1rem;
        line-height: 1.2;
    }

    .block__header {
        margin-bottom: 4rem;
    }
}

.block__paragraph {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.block__paragraph--big {
    font-size: 1.1rem;
    font-weight: 400;
}

@media (min-width: 992px) {
    .block__paragraph--big {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

/* Icons */

.fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 3px;
    color: var(--primary);
    background: none;
    margin-bottom: 1.5rem;
    transition: 0.5s;
}

.fr-icon--medium {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
}

.fr-icon--large {
    font-size: 1.2rem;
    height: 3.25rem;
    width: 3.25rem;
}

@media (min-width: 992px) {
    .fr-icon--large {
        height: 3.8rem;
        width: 3.8rem;
        font-size: 1.9rem;
    }
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.hero {
    --hero-nav-height: 100px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    /* background: var(--block-background); */
    color: var(--block-text-color);
    position: relative;
    display: flex;
    flex-direction: column;
    /* box-shadow: inset 0 -1px 0 #e9e9ec; */
    background: linear-gradient(to right, rgb(255, 228, 230), rgb(204, 251, 241));
}

.hero-nav {
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: var(--hero-nav-height);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-nav__item {
    margin: auto;
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .hero-nav__item {
        margin: 0 1rem;
    }
}

@media (min-width: 992px) {
    .nav--lg-side {
        flex-direction: row-reverse;
    }
}

.hero-nav__logo {
    height: 60px;
}

.hero-nav__link {
    color: inherit;
    opacity: 0.9;
    text-decoration: none;
}

.hero-nav__link:focus,
.hero-nav__link:hover {
    color: inherit;
    text-decoration: none;
    opacity: 1;
}

.ft-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*z-index: 2000;*/
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.ft-menu--js-show{
	z-index: 2002;
}

@media (print), (prefers-reduced-motion: reduce) {
    .ft-menu {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

.ft-menu .hero-nav__item {
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .ft-menu .hero-nav__item {
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.ft-menu--js-show {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.ft-menu::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--primary);
    opacity: 0.9;
    z-index: -1;
}

@media (min-width: 992px) {
    .ft-menu {
        -webkit-animation-name: none;
        animation-name: none;
        position: static;
        z-index: auto;
    }

    .ft-menu::before {
        content: none;
    }
}

.ft-menu__slider {
    --block-background: white;
    --block-text-color: var(--text-primary);
    color: var(--block-text-color);
    background: var(--block-background);
    width: 80%;
    height: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        --block-background: transparent;
        --block-text-color: var(--block-text-color);
        width: auto;
        height: auto;
        background: 0 0;
        transform: none;
        display: flex;
        align-items: center;
    }
}

.ft-menu--js-show .ft-menu__slider {
    transform: translateX(0);
}

.ft-menu__close-btn {
    color: var(--primary-invert);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    margin: 1rem;
    transform: translateX(100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__close-btn {
        display: none;
    }
}

.ft-menu--js-show .ft-menu__close-btn {
    transform: translateX(0);
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
    color: var(--primary-invert);
}

@-webkit-keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

.fixed-nav-container {
    height: var(--hero-nav-height);
}

.hero-nav--is-sticky {
    --block-background: white;
    color: var(--block-text-color);
    background: var(--block-background);
    position: fixed !important;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem !important;
    height: 60px;
    transition: 0.2s height;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@media (min-width: 992px) {
    .hero-nav--is-sticky {
        height: 80px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 1rem 1.5rem !important;
    }
}

.ft-menu__slider {
    color: var(--block-text-color);
}

.hero-nav--is-sticky .ft-menu__slider {
    color: var(--text-primary);
}

.hero-nav--is-sticky .btn {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.ft-menu__slider .hero-nav__item {
    font-size: 1.1rem;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .ft-menu__slider .hero-nav__item {
        padding: 0;
    }
}

.hero-nav__link {
    display: flex;
    align-items: center;
    outline: 0 !important;
}

.ft-menu__slider {
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        overflow: visible;
    }
}

.hero-nav__item--with-dropdown {
    position: relative;
    cursor: pointer;
}

@media (min-width: 992px) {
    .hero-nav__item--with-dropdown::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 176%; 
    }
	/* div#setposion { */
		/* position:static !important; */
	/* } */
}

.hero-nav__dropdown {
    position: static;
    width: 100%;
    height: auto;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    color: var(--text-primary);
    text-align: initial;
    cursor: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown {
        position: absolute;
        top: 176%;
        left: 0;
        margin-top: 0;
        border-radius: 10px;
        border-top: none;
        box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
        background-color: #fff;
        z-index: 2;
        max-height: 0;
        padding: 2.3rem 3rem 2rem 2rem;
        overflow: visible;
        transition: 0.3s all;
    }
}

.dropdown--important {
    position: absolute;
    width: auto !important;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 2rem;
    padding-right: 3rem;
    overflow: visible;
    transition: 0.3s all;
}

@media (min-width: 992px) {
    .dropdown--of-1-columns {
        width: 400px;
    }

    .dropdown--of-2-columns {
        width: 700px;
    }

    .dropdown--language-selector {
        width: 250px;
    }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 1rem;
    visibility: visible;
    opacity: 1;
    max-height: 9999px;
    padding-top: 1rem;
}

@media (min-width: 992px) {
    .hero-nav__item--show-dropdown .hero-nav__dropdown {
        margin-top: 0;
        padding: 2.3rem 3rem 2rem 2rem;
    }
}

.hero-nav__item-chevron {
    transition: 0.3s all;
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
    transform: rotate(180deg);
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
}

@media (min-width: 992px) {
    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
        transform: translateX(-15px) !important;
        left: 0;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
        left: 15%;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
        transform: translateX(15px) !important;
        left: auto;
        right: 0;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
        left: auto;
        right: 15%;
    }
}

.dropdown--important::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown::before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 6.85px 8.1px 6.85px;
        border-color: transparent transparent #fff transparent;
        position: absolute;
        top: -6px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

.dropdown__title {
    color: var(--text-primary);
    opacity: 0.7;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 1.18rem;
}

.dropdown__link {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.3rem;
    color: inherit;
    text-decoration: none;
}

.dropdown__link:focus,
.dropdown__link:hover {
    color: inherit;
    text-decoration: none;
}

[javascript-language-selector] .dropdown__link {
    border-radius: 0.5rem;
    padding: 0.7rem;
    margin-bottom: 3px;
}

.dropdown__link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dropdown__link:last-child {
    margin: 0;
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.dropdown__icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    font-size: 13px;
}

@media (min-width: 992px) {
    .dropdown__icon {
        width: 40px;
        height: 40px;
    }
}

.dropdown__item {
    max-width: 250px;
}

.dropdown__item-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: -1;
}

@media (min-width: 992px) {
    .dropdown__item-title {
        white-space: nowrap;
    }
}

.dropdown__item-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    width: 100%;
    background: var(--secondary);
    transform: translateY(2px);
    opacity: 0;
    transition: 0.2s;
}

[javascript-language-selector] .dropdown__item-title {
    white-space: nowrap;
}

[javascript-language-selector] .dropdown__item-title::before {
    display: none;
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
    height: 30%;
    transform: translateY(0);
    opacity: 0.4;
}

.dropdown__item-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
    margin-bottom: 0;
}

.dropdown__item-description,
.dropdown__item-title {
    width: 95%;
}

.hero__row {
    height: 300px;
    position: static;
}

@media (min-width: 992px) {
    .hero__row {
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: 0;
    }
}

.hero_empty-column {
    height: 100%;
}

.hero__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

.hero__content {
    text-align: initial;
}

.hero__body {
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero__body {
        padding-top: 4rem;
        padding-bottom: 7rem;
    }
}

.hero__title {
    font-size: 2rem;
    font-weight: 900;
    background: -webkit-linear-gradient(#1973FE, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__paragraph {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.98;
}

@media (min-width: 576px) {
    .hero__title {
        font-size: 2.5rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        width: 80%;
        margin: auto;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        font-size: 1.4rem;
        width: 80%;
    }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.25;
    }
}

.hero__btns-container {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/*------------------------------*/
/*--Features----------------*/
/*------------------------------*/
.block-1 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.card-1 {
    height: 100%;
}

.card-1:hover {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 9%);
    padding: 5px;
}

.card-1__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

.card-1__paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.block-1-testimonial {
    background: #c3f0f7;
    padding: 2.5rem;
    border-radius: 4px;
}

.block-1-testimonial__paragraph {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.block-1-testimonial__quote-svg {
    color: currentColor;
    transform: scale(0.8);
}

.block-1-person {
    font-size: 0.9rem;
}

.block-1-person__link {
    color: var(--text-primary);
    text-decoration: none;
}

.block-1-person__link:focus,
.block-1-person__link:hover {
    color: var(--primary);
    text-decoration: underline;
    opacity: 0.9;
}

.block-1-person__avatar {
    width: 40px;
    height: 40px;
    border-radius: 10rem;
    border: 2px solid #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.mb-2-1rem {
    margin-bottom: 2.1rem;
}

/*------------------------------*/
/*--Industries----------------*/
/*------------------------------*/
.block-2 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    position: relative;
    z-index: 0;
}

.block-2-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
}

@media (min-width: 992px) {
    .block-2-card {
        padding: 2.5rem;
    }
}

.block-2-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.46;
}

@media (min-width: 992px) {
    .block-2-card__title {
        font-size: 1.5rem;
    }
}

.block-2-card__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.block-2-card {
    display: none !important;
}

.block-2-card:first-child {
    display: flex !important;
}

@media (min-width: 992px) {
    .block-2-card:first-child,
    .block-2-card:nth-child(2),
    .block-2-card:nth-child(3) {
        display: flex !important;
    }
}

.splide__track {
    overflow: visible !important;
}

.block-2 {
    overflow-y: hidden;
}

.block-2 .splide__track .splide__slide {
    height: auto !important;
    display: flex !important;
}

.block-2 {
    position: relative;
}



@media (min-width: 992px) {
    .block-2::after,
    .block-2::before {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        width: 100%;
        height: var(--space-between-blocks);
        background: var(--block-background);
        z-index: 1;
    }

    .block-2::before {
        top: 0;
    }

    .block-2::after {
        bottom: 0;
    }
}

.block-2__splide {
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    .block-2__splide {
        overflow: visible;
        position: static;
    }
}

.splide__arrows {
    display: none;
}

.block-2__custom-arrows.splide__arrows {
    display: block;
}

.block-2__splide::after,
.block-2__splide::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: calc(100% + 2rem);
    margin: 0 -1rem;
    height: 2rem;
    z-index: 1;
}

@media (min-width: 992px) {
    .block-2__splide::after,
    .block-2__splide::before {
        height: 9rem;
    }
}

.block-2__splide::before {
    top: 0;
    background: linear-gradient(to bottom, var(--block-background) 0, transparent 100%);
}

.block-2__splide::after {
    bottom: 0;
    background: linear-gradient(to top, var(--block-background) 0, transparent 100%);
}

.block-2__splide-btn {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 34px;
    box-shadow: none;
    width: 50px;
    height: 2rem;
    border-radius: 10rem;
    color: var(--block-background);
    background: var(--block-text-color);
    border: none;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    transform: rotate(90deg);
    z-index: 2;
}

@media (min-width: 992px) {
    .block-2__splide-btn {
        right: 22%;
        left: auto;
    }
}

.block-2__splide-btn:focus,
.block-2__splide-btn:hover {
    background: var(--primary);
    color: var(--primary-invert);
}

.splide__slide.is-active .fr-icon {
    background: var(--primary);
    color: var(--primary-invert);
}

.block-2-card__title {
    position: relative;
}

.block-2-card__title::before {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 0;
    left: 0;
    width: 70%;
    height: 0%;
    background: var(--primary);
    opacity: 0.3;
    transition: 0.5s height;
}

@media (min-width: 992px) {
    .block-2-card__title::before {
        width: 30%;
    }
}

.splide__slide.is-active .block-2-card__title::before {
    height: 30%;
}

.block-2__dots-svg--left {
    color: var(--primary);
    top: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(-15rem, 2rem) rotate(90deg);
    z-index: 2;
}

.block-2__dots-svg--right {
    color: var(--primary);
    bottom: 0;
    right: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(14.5rem, -8rem) rotate(90deg);
    z-index: 2;
}

@media (min-width: 1400px) {
    .block-2__splide::after,
    .block-2__splide::before {
        max-width: 89%;
        margin: auto;
    }

    .block-2__dots-svg--left {
        transform: translate(-13rem, 2rem) rotate(90deg);
    }

    .block-2__dots-svg--right {
        transform: translate(13rem, -8rem) rotate(90deg);
    }

    .block-2__splide-btn {
        right: 25%;
    }
}

/*------------------------------*/
/*--Stats----------------*/
/*------------------------------*/
.block-38 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.block__header {
    margin-bottom: 4rem;
}

.block__pre-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }
}

.block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.stats {
    background: var(--gradient-secondary);
    color: var(--secondary-invert);
    border-radius: 0.5rem;
    --stats-li-border-color: rgba(255, 255, 255, 0.2);
}

.stats__li {
    border-bottom: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:last-child {
    border-bottom: none;
}

.stats__li {
    border-right: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:nth-child(3),
.stats__li:nth-child(4) {
    border-bottom: none;
}

.stats__li:nth-child(even) {
    border-right: none;
}

@media (min-width: 992px) {
    .stats__li {
        border-bottom: none;
        border-right: 1px solid var(--stats-li-border-color) !important;
        padding: 0 !important;
    }

    .stats__li:last-child {
        border-right: none !important;
    }
}

.stats__number {
    font-size: 2.5rem;
    font-weight: 900;
}

.stats__text {
    width: 90%;
    margin: auto;
    font-size: 0.87rem;
    opacity: 0.9;
}

@media (min-width: 992px) {
    .stats__text {
        width: 100%;
    }
}

/*------------------------------*/
/*--CTA----------------*/
/*------------------------------*/
.block-29 {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    position: relative;
}

@media (min-width: 992px) {
    .block-29 {
        border-radius: 10px;
    }
}

.block-29__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.block-29__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.block-29__paragraph,
.block-29__title {
    text-align: center;
}

@media (min-width: 992px) {
    .block-29__title {
        font-size: 2.5rem;
    }

    .block-29__paragraph,
    .block-29__title {
        text-align: initial;
    }

    .block-29__paragraph {
        width: 90%;
    }
}

/*------------------------------*/
/*--Footer----------------*/
/*------------------------------*/
.block-44 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    --text-primary: var(--block-text-color);
    background: var(--block-background);
    color: var(--block-text-color);
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 992px) {
    .block-44 {
        text-align: initial;
    }
}

.block-44__logo-container {
    width: 100%;
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .block-44__logo-container {
        width: auto;
        flex-grow: 1;
        margin-bottom: 0;
    }
}

.block-44__logo {
    height: 36px;
}

.block-44__list {
    display: flex;
    flex-wrap: wrap;
}

.block-44__li-1 {
    margin-bottom: 0.6rem;
    margin: 0.9rem;
}

.block-44__li-1::after {
    content: '';
    display: inline-block;
    width: 0;
}

@media (min-width: 992px) {
    .block-44__li-1 {
        margin: 0;
    }

    .block-44__li-1::after {
        width: 2.8rem;
    }

    .block-44__li-1:last-child::after {
        width: 0;
    }
}

.block-44__link {
    color: var(--block-text-color);
    text-decoration: none;
}

.block-44__link:focus,
.block-44__link:hover {
    color: inherit;
    text-decoration: underline;
}

.block-44__divider {
    margin: 2.4rem 0;
    color: #88909b;
}

.block-44__extra-links {
    justify-content: center;
}

@media (min-width: 768px) {
    .block-44__extra-links {
        justify-content: flex-start;
    }
}

.block-44__copyrights {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/*------------------------------*/
/*--Contact us----------------*/
/*------------------------------*/
.block-27 {
    --space-between-blocks: 1rem;
    --elements-roundness: 5px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.block-27__row {
    height: 300px;
}

@media (min-width: 992px) {
    .block-27__row {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        height: 100%;
    }
}

.block-27__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

@media (min-width: 992px) {
    .block-27__image-column {
        margin: 0 !important;
    }
}

.block-27__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.block-27__bg-image {
    background-position: center;
    background-size: cover;
}

.contact-form__title {
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-form__paragraph {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-form {
    margin: auto;
}

.hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.hr__or {
    background: var(--block-background);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 54px;
    height: 23px;
    margin-top: -12px;
    display: block;
    color: #ccc;
}

.contact-form__input {
    color: var(--text-primary);
    font-size: 0.87rem;
    padding: 0.87rem 1.4rem;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: #fff;
    width: 100%;
    margin-bottom: 0.87rem;
}

textarea.contact-form__input {
    height: 130px;
    resize: none;
}

.contact-form__input:focus {
    border: 1px solid var(--primary);
    outline: 0;
    box-shadow: none;
}

.btn--loading {
    opacity: 1;
    cursor: progress;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--loading::after,
.btn--loading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.btn--loading::before {
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn--loading::after {
    margin: auto;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid var(--primary-invert);
    width: 1.5rem;
    height: 1.5rem;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
    z-index: 2;
}

.h-100 {
    height: 100% !important;
}

/*------------------------------*/
/*--Page/Blog----------------*/
/*------------------------------*/
.article-block {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.article-block__title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.article-block__info {
    opacity: 0.95;
    font-size: 0.9rem;
    margin: 0;
}

.article-block__author {
    color: inherit;
    position: relative;
    padding-right: 13px;
    margin-right: 13px;
}

.article-block__author:focus,
.article-block__author:hover {
    color: inherit;
    text-decoration: underline;
}

.article-block__author::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 90%;
    margin: auto;
    width: 3px;
    transform: rotate(10deg);
    background: var(--primary);
}

.article-block__header-img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    font-weight: 600;
    line-height: 1.5;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.article-container__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.article {
    padding: 0 1.5rem;
}

.article p {
    line-height: 2.1;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .article {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.article img,
.article video {
    width: 100%;
}

pre {
    background: #333;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
}

ol,
ul {
    line-height: 2;
}

blockquote {
    margin: 0 0 1rem;
    padding: 1rem 1rem 1px 1rem;
    background: rgba(0, 0, 0, 0.02);
    font-style: italic;
    margin-top: 2rem;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

/*------------------------------*/
/*--Testionial----------------*/
/*------------------------------*/
.block-20 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.testimonial-card-1 {
    border-radius: 5px;
    position: relative;
    padding: 2.3rem 2.2rem 2.2rem 2.2rem;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
    margin-bottom: 7rem;
}

@media (min-width: 992px) {
    .testimonial-card-1 {
        height: 100%;
        margin-bottom: 0;
    }
}

.testimonial-card-1__paragraph {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.7;
}

.testimonial-card-1__quote-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
    font-size: 1.3rem;
    border-radius: 10rem;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
}

.block-20-person {
    text-align: center;
    transform: translateY(-5.5rem);
    margin-bottom: -4rem;
}

.block-20-person__avatar {
    padding: 6px;
    width: 116px;
    height: 116px;
    background: #fff;
    border-radius: 10rem;
    border-bottom: 1px solid #ccc;
}

.block-20-person__rating {
    font-size: 0.75rem;
    color: #ffe200;
}

.block-20-person__name {
    font-size: 0.87rem;
    font-weight: 600;
}

.block-20-person__info {
    font-size: 0.87rem;
    opacity: 0.9;
    text-decoration: none;
}

@media (min-width: 1400px) {
    #block__container {
        max-width: 87%;
    }
}

/*------------------------------*/
/*--FAQ----------------*/
/*------------------------------*/
.block-39 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.content-block {
    text-align: initial;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .content-block {
        width: 90%;
    }
}

.content-block__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .content-block__title {
        font-size: 1.5rem;
    }
}

.content-block__paragraph {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/*------------ Mobile------------------*/
@media only screen and (max-width: 600px) {
	#block__container {
		padding: 10px 0px!important;
	}
	.nav {
		display: block;
	}
	.hero-nav{
		width: 100%;
	}
	.hero-nav__logo {
		position: relative;
		top: 35px;
		z-index:9999 !important;
	}   
	li.hero-nav__item{
		position: relative;
		bottom: 30px;
	}
	.ft-menu .hero-nav__item {
      margin-top: 1.75rem;
	}
	.hero-nav__item {
		font-size: 1.1rem;
	}
	.fr-icon {
		display: block;
		width: fit-content;
		/*margin-left: auto;
		margin-right: auto;
		text-align: center;*/
		margin-bottom: auto;
		
		margin-top: auto;
		
	}
	.card-1__title {
		font-size: 1.3rem;
		/*text-align: center;*/
	}
	.card-1__paragraph {  
		font-size: 1.1rem;
		/*text-align: center;*/
	}
	a.hero__btn.btn.btn-primary.mb-2.mb-lg-0.mx-1.mx-lg-2 {
		/* display: flex; */
		justify-content: center;
	}
	a.btn.btn-primary	
	{
		/* display: flex; */
		justify-content: center;
	}
	
	#unique-id-2-track {
		padding-top: 0 !important;
		height: auto !important;
		margin-top: 0 !important;
	}

	#unique-id-2-list {
		transform: none !important;
		margin-top: 0 !important;
	}

	.splide__slide {
		height: auto  !important;
	}

	.header + .splide__track {
		margin-top: 10px; 
	}
	.bydefault_pmt_show_icon {
        display: none !important;
    }
    #pmt_icon {
        display: block !important;
		width:85px;
    }
	.col-md-6.text-start.social-media-icon-div.mobile_device_center {
		display: flex;
		justify-content: space-around;
	}
	.block-2-card {
		padding: 1.2rem;
		margin-bottom: 1rem;
		border-radius: 5px;
		background: rgba(255, 255, 255, 0.05);
		box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
	}
	.testimonial-card-1 {
		box-shadow: none !important;
		border-radius: 10px;
		margin-bottom: auto !important;
	}
	hr.block-44__divider {
		margin-top: auto;
	}
	.col-lg-9.mx-auto.text-center.px-0.mb-5 {
		margin-bottom: auto !important;
	}
	.col-md-6.mb-2-1rem {
		margin-bottom: 10px !important;
	}
	p.block__paragraph--big.mb-5 {
		margin-bottom: auto !important;
	}
	h1.block__title--big.mb-3 {
		text-align: left;
	}
	h1.block__title--big.pb-5 {
		padding-bottom: 1rem !important;
	}
	.hero__body {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	h1.our {
		padding-bottom: 0!important;
	}
	.block-1.space-between-blocks {
		padding-top: 0!important;
	}
	.mt-4 {
		margin-top: 2.5rem !important;
	}
	div#setposion {
		position: static !important;
	}
	
	.block__neem {
		margin: 0 !important;				
		/* text-align: center; */
	}
	
	.btn.btn-primary.show-btn-ctm{
		display: inline-block;
		z-index:2001;
	}
	aside.card.team {
		margin: auto !important;
	  
	}
	.show-btn-ctm {
		font-size: 11px!important;
		padding: 0.4rem 0.7rem!important;
		display: inline-block!important;
		width: auto!important;
		top:37!important;
		margin-right: 27px !important;
		margin-left: auto!important;
		text-align: center!important;
	}
	.hero-nav__item { 
		display: flex;;
		align-items: center;
		/* padding: 0.5rem 1rem; */
	}
	li.hero-nav__item.d-lg-none.d-flex.flex-row-reverse {
		bottom: 38px !important;
	}
	.col-md-6.text-end.mobile_device_center span {
		margin-left: 9px;
	}
	i.fas.fa-bars {
		font-size: 31px !important;
	}
	ul.nav.w-100.list-unstyled.align-items-center.p-0 {
		margin-top: 5px !important;
	}
	.hero__btns-container {
		margin-left: -0.5rem;
		margin-right: -0.5rem;
		text-align: center;
	}
	.mb-5.mt-4.mb-lg-0.mt-lg-5 {
		text-align: center!important;
	}
	
	.container.px-lg-4.px-xl-0.position-relative {
		margin-top: 0 !important;
	}
	.block-2.space-between-blocks.overflow-hidden {
		padding-top: 0 !important;
	}
	
	.col-md-6.text-start.social-media-icon-div.mobile_device_center {
		margin-left: 8px;
		justify-content: unset;
	}
	/* .text-follow{ */
		/* margin-left: -21px !important; */
	/* } */
	
	
}

@media (min-width: 601px) and (max-width: 767px) {
  .row.mobile-style {
		margin-left: 0;
	}
}

.ft-menu__close-btn {
    transform: unset;
}

.homepage .owl-carousel.owl-drag .owl-item {
    padding: 15px;
}

.homepage #Products2 {
    margin-top: 0;
    margin-bottom: 64px;
    background: #fff;
}

@media (max-width: 768px) {
    .homepage #Products2 {
        margin-top: 0;
        margin-bottom: 40px;
    }
}

.homepage {
    --home-surface: linear-gradient(180deg, #f7fbff 0%, #eef5ff 52%, #ffffff 100%);
    --home-card-bg: rgba(255, 255, 255, 0.88);
    --home-card-border: rgba(25, 115, 254, 0.12);
    --home-shadow-soft: 0 18px 55px rgba(21, 51, 102, 0.08);
    --home-shadow-strong: 0 24px 80px rgba(16, 37, 75, 0.14);
    --home-text-soft: #5d6b82;
    background:
        radial-gradient(circle at top left, rgba(25, 115, 254, 0.13), transparent 30%),
        radial-gradient(circle at top right, rgba(12, 194, 164, 0.11), transparent 28%),
        var(--home-surface);
}

.homepage .space-between-blocks {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.homepage .hero {
    padding-bottom: 3.1rem;
}

.homepage .hero-topbar {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.homepage .hero-nav {
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.homepage .hero-nav.hero-nav--is-sticky {
    background: #fff;
    backdrop-filter: none;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    border-radius: 0 0 1.35rem 1.35rem;
    margin-top: 0;
    padding-left: clamp(1.25rem, 3vw, 2.5rem) !important;
    padding-right: clamp(1.25rem, 3vw, 2.5rem) !important;
}

.homepage-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.09);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.homepage-kicker__dot {
    display: inline-block;
    font-size: 1.24rem;
    line-height: 1;
    margin: 0 0.03rem 0 0.01rem;
    vertical-align: middle;
}

.homepage-kicker--light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
    color: #dbeafe;
}

.homepage .hero__content {
    position: relative;
}

.homepage .hero__body {
    max-width: 44rem;
}

.homepage .hero__title {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 52%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.homepage .hero__paragraph {
    color: #24354d;
    max-width: 42rem;
}

.homepage .hero__paragraph p {
    margin-bottom: 0;
}

.homepage .hero__btns-container .btn {
    min-width: 186px;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.8rem 1.25rem;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.22);
}

.homepage .hero__btns-container .btn:hover {
    transform: translateY(-2px);
}

.homepage .hero__image-column {
    position: relative;
    padding-right: 1.5rem;
}

.homepage .hero__image-column::before {
    content: "";
    position: absolute;
    inset: 10% 0 6% 4%;
    border-radius: 2rem;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(14, 165, 233, 0.04));
    filter: blur(12px);
    z-index: 0;
}

.homepage .hero__image {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 70px rgba(20, 44, 88, 0.16));
}

.homepage-suite__intro {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 0.9rem;
    justify-items: center;
}

.homepage-suite__title,
.homepage #features .block__title--big,
.homepage #industries-title,
.homepage #statistics-title,
.homepage #testimonials-title,
.homepage #faq-title,
.homepage-cta .block-29__title {
    color: #10284d;
    letter-spacing: -0.03em;
}

.homepage-suite__title {
    font-weight: 800;
}

.homepage-suite__description {
    max-width: 46rem;
    color: var(--home-text-soft) !important;
    font-size: 1.05rem;
    line-height: 1.68;
}

.homepage .product-slider .owl-stage-outer {
    padding: 1.2rem 0;
}

.homepage .product-slider .item {
    height: 100%;
}

.homepage .homepage-suite-card {
    min-height: 100%;
    border: 1px solid var(--home-card-border) !important;
    border-radius: 1.6rem !important;
    box-shadow: var(--home-shadow-soft);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.96) 100%) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.homepage .homepage-suite-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--home-shadow-strong);
    border-color: rgba(37, 99, 235, 0.22) !important;
}

.homepage .homepage-suite-card .icons_one {
    width: 5.25rem;
    height: 5.25rem;
    border-radius: 999px;
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(56, 189, 248, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage .homepage-suite-card .uu {
    color: #2563eb;
    font-size: 2.25rem;
}

.homepage .homepage-suite-card .caption {
    padding-bottom: 2rem;
}

.homepage .block-2-card__title_new {
    font-size: 1.18rem;
    line-height: 1.35;
    color: #13315f;
}

.homepage .homepage-suite-card .role {
    min-height: 5.5rem;
    color: var(--home-text-soft);
    line-height: 1.65;
}

.homepage .homepage-suite-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: #2563eb;
}

.homepage .homepage-suite-card__link::after {
    content: "\2192";
    transition: transform 0.18s ease;
}

.homepage .homepage-suite-card:hover .homepage-suite-card__link::after {
    transform: translateX(4px);
}

.homepage .homepage-suite-card,
.homepage .card-1,
.homepage .testimonial-card-1,
.homepage .content-block,
.homepage .stats__li,
.homepage .block-2-card,
.homepage .hero__body,
.homepage .hero__image-column,
.homepage .homepage-cta .col-lg-8,
.homepage .homepage-cta .col-lg-4 {
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.homepage .reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
}

.homepage .reveal-on-scroll.reveal-from-left {
    transform: translateX(-30px);
}

.homepage .reveal-on-scroll.reveal-from-right {
    transform: translateX(30px);
}

.homepage .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.homepage #features .row,
.homepage .homepage-industries__container,
.homepage .homepage-stats .container,
.homepage #faq-title,
.homepage #testimonials-title,
.homepage-cta {
    position: relative;
}

.homepage #features .row::before,
.homepage .homepage-stats .container::before,
.homepage-cta::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 100%;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--home-shadow-soft);
    z-index: 0;
}

.homepage #features .row > *,
.homepage .homepage-stats .container > *,
.homepage-cta > * {
    position: relative;
    z-index: 1;
}

.homepage #features .row {
    padding: 2rem 1.25rem;
    border-radius: 2rem;
}

.homepage #features .card-1 {
    padding: 1.5rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.homepage #features .card-1:hover {
    transform: translateY(-6px);
    padding: 1.5rem;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.homepage #features .fr-icon {
    width: 3.3rem;
    height: 3.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.05));
    color: #2563eb;
    margin-bottom: 1rem;
}

.homepage #features .card-1__paragraph,
.homepage .block__paragraph,
.homepage .block__paragraph--big,
.homepage .content-block__paragraph,
.homepage .block-29__paragraph {
    color: var(--home-text-soft);
}

.homepage .homepage-industries__container {
    margin-top: 1.35rem;
}

.homepage .block__neem {
    margin-top: 0;
    background: linear-gradient(135deg, #10284d 0%, #163f76 58%, #1d4ed8 100%);
    border-radius: 2rem;
    padding: 2.2rem;
    color: #fff;
    box-shadow: var(--home-shadow-strong);
}

.homepage .homepage-industries__content {
    z-index: 2;
}

.homepage .block__neem .block__title,
.homepage .block__neem .block__paragraph,
.homepage .block__neem .block-2-card__title,
.homepage .block__neem .block-2-card__paragraph {
    color: #fff;
}

.homepage .block__neem .btn-primary {
    background: #fff;
    border-color: #fff;
    color: #17386f;
    box-shadow: none;
}

.homepage .block__neem .btn-primary:hover {
    background: #eff6ff;
    border-color: #eff6ff;
}

.homepage .block-2-card {
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.homepage .block-2-card__title::before {
    background: rgba(147, 197, 253, 0.5);
}

.homepage .homepage-stats {
    margin-top: 2.4rem;
}

.homepage .homepage-stats .container {
    padding: 2rem 1.4rem;
    border-radius: 2rem;
}

.homepage .stats {
    gap: 1rem 0;
}

.homepage .stats__li {
    padding: 1rem;
}

.homepage .stats__number {
    display: block;
    padding: 1.25rem 1rem 0.35rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.homepage .stats__text {
    color: var(--home-text-soft);
    margin-top: 0.75rem;
}

.homepage .testimonial-slider {
    padding: 0.5rem 0 0;
}

.homepage .testimonial-slider#block__container {
    padding: 0 1rem;
}

.homepage .testimonial-slider#block__container .item {
    margin: 0 0.85rem;
}

.homepage .testimonial-card-1 {
    height: auto !important;
    margin-top: 22px !important;
    border-radius: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.92));
    box-shadow: var(--home-shadow-soft);
}

.homepage .testimonial-card-1__quote-symbol {
    bottom: 3px !important;
    color: rgba(37, 99, 235, 0.16);
}

.homepage .block-20-person__avatar {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.homepage .content-block {
    height: 100%;
    padding: 1.6rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.homepage .content-block__title {
    color: #12305f;
}

.homepage-cta {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(16, 40, 77, 0.97), rgba(29, 78, 216, 0.92));
    box-shadow: var(--home-shadow-strong);
}

.homepage-cta::before {
    display: none;
}

.homepage-cta .block-29__title,
.homepage-cta .block-29__paragraph {
    color: #fff;
}

.homepage-cta .btn-secondary {
    border-radius: 999px;
    background: #fff;
    border-color: #fff;
    color: #16386e;
    font-weight: 700;
    padding: 0.95rem 1.4rem;
}

.homepage-cta .btn-secondary:hover {
    background: #eff6ff;
    border-color: #eff6ff;
}

@media only screen and (max-width: 991px) {
    .homepage .space-between-blocks {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .homepage .hero__image-column {
        padding-right: 0;
    }

    .homepage .block__neem {
        padding: 1.5rem;
    }

    .homepage #features .row {
        padding: 1.2rem 0.25rem;
    }

    .homepage .homepage-stats .container {
        padding: 1.8rem 1rem;
    }
}

@media only screen and (max-width: 600px) {
    .homepage .hero-nav.hero-nav--is-sticky {
        border-radius: 0;
        margin-top: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .homepage .hero__title {
        text-align: center;
    }

    .homepage .hero__paragraph {
        text-align: center;
        width: 100%;
    }

    .homepage .homepage-suite-card .icons_one {
        margin-left: auto;
        margin-right: auto;
    }

    .homepage .homepage-suite-card .role {
        min-height: 0;
    }

    .homepage .testimonial-slider#block__container {
        padding: 0;
    }

    .homepage .content-block {
        padding: 1.25rem;
    }
}

.homepage {
    color: #0f172a;
}

.homepage .hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.18), transparent 26%),
        radial-gradient(circle at 100% 18%, rgba(45, 212, 191, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f3f8ff 30%, #ffffff 55%, #ffffff 100%) !important;
}

.homepage .hero::before {
    content: "";
    position: absolute;
    inset: 6rem auto auto -6rem;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    filter: blur(30px);
}

.homepage .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: #fff;
    z-index: 1;
    pointer-events: none;
}

.homepage .hero__content {
    padding-top: 0.5rem;
}

.homepage .hero__body {
    padding-top: 2.4rem;
    padding-bottom: 3rem;
}

.homepage .hero__title {
    max-width: 14ch;
    font-size: clamp(2.58rem, 4.75vw, 5rem);
    line-height: 1.02;
    font-weight: 900;
    margin-bottom: 1rem !important;
}

.homepage .hero__paragraph {
    max-width: 39rem;
    font-size: 0.96rem;
    line-height: 1.64;
    color: #4b5d78;
}

.homepage .hero__proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 0.85rem;
    margin: 0 0 1.05rem;
    padding: 0;
    max-width: 44rem;
}

.homepage .hero__proof-item {
    position: relative;
    padding-left: 1.45rem;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #183153;
}

.homepage .hero__proof-item::before {
    content: "";
    position: absolute;
    top: 0.45rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.homepage .hero__btns-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 1rem;
}

.homepage .hero__btns-container .hero__btn {
    margin: 0 !important;
}

.homepage .hero__btns-container .btn-secondary {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #12305f;
}

.homepage .hero__btns-container .btn-secondary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.homepage .hero__microcopy {
    font-size: 0.86rem;
    color: #63748d;
    line-height: 1.35;
}

.homepage .hero__row {
    align-items: center;
}

.homepage .hero__image-column {
    min-height: 44rem;
    padding: 1rem 1rem 0 0;
}

.homepage .hero__image-column::after {
    content: "";
    position: absolute;
    inset: 14% 8% 9% 10%;
    border-radius: 2.2rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28));
    z-index: 0;
}

.homepage .hero__image {
    max-height: 44rem;
}

.homepage-marquee {
    margin-top: 0.9rem;
    margin-bottom: 1.15rem;
}

.homepage-marquee__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding: 1rem 1.15rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.homepage-marquee__intro {
    display: grid;
    gap: 0.3rem;
    max-width: 22rem;
}

.homepage-marquee__label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1d4ed8;
    white-space: nowrap;
}

.homepage-marquee__text {
    margin: 0;
    color: #607089;
    font-size: 0.9rem;
    line-height: 1.5;
}

.homepage-marquee__items {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: end;
    align-items: center;
    gap: 0.7rem;
}

.homepage-marquee__item,
.homepage-suite__chip {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.15rem 0;
    border-radius: 0;
    background: transparent;
    color: #17386f;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    list-style: none;
    border: 0;
    box-shadow: none;
}

.homepage-marquee__item i {
    color: #2563eb;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.homepage-marquee__items,
.homepage-marquee__item,
.homepage-marquee__item span {
    list-style: none !important;
}

.homepage-marquee__item::marker,
.homepage-marquee__item span::marker {
    content: none !important;
}

.homepage-marquee__item::before,
.homepage-suite__chip::before {
    content: none;
}

.homepage-marquee__item span::before {
    content: none !important;
}

.homepage-suite__intro {
    margin-bottom: 1.65rem !important;
}

.homepage-suite__title {
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    line-height: 1.05;
}

.homepage-suite__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.homepage-section__lead {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
    color: #52627a;
    font-size: 1rem;
    line-height: 1.72;
}

.homepage-section__lead--light {
    margin-left: 0;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.82);
}

.homepage .product-slider .owl-nav,
.homepage .testimonial-slider .owl-nav {
    top: -4.8rem;
    justify-content: flex-end;
    gap: 0.75rem;
    transform: none;
}

.homepage .product-slider .owl-nav button,
.homepage .testimonial-slider .owl-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.homepage .homepage-suite-card {
    padding: 0.75rem 0 0;
}

.homepage .homepage-suite-card .caption {
    text-align: left;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.homepage .homepage-suite-card .work-at {
    margin-bottom: 0;
}

.homepage .block-2-card__title_new {
    font-size: 1.28rem;
    font-weight: 800;
}

.homepage .homepage-suite-card .role {
    font-size: 0.98rem;
}

.homepage .homepage-suite-card__link {
    margin-top: 0.25rem;
}

.homepage #features .card-1,
.homepage .content-block,
.homepage .testimonial-card-1,
.homepage .stats__number {
    backdrop-filter: blur(8px);
}

.homepage #features .card-1__title,
.homepage .content-block__title,
.homepage .block-20-person__name {
    color: #10284d;
}

.homepage .block-20-person {
    margin-bottom: -3.4rem;
}

.homepage .testimonial-card-1 {
    padding-top: 3.2rem;
}

.homepage .testimonial-card-1__paragraph {
    font-size: 1rem;
    line-height: 1.8;
    color: #56667d;
}

.homepage .content-block__paragraph {
    font-size: 0.98rem;
}

.homepage .homepage-cta {
    position: relative;
    overflow: hidden;
}

.homepage .homepage-cta::after {
    content: "";
    position: absolute;
    inset: auto -5% -45% auto;
    width: 20rem;
    height: 20rem;
    border-radius: 999px;
    background: rgba(191, 219, 254, 0.14);
    filter: blur(14px);
}

.homepage .homepage-cta .btn-secondary {
    min-width: 220px;
}

@media only screen and (max-width: 991px) {
    .homepage .hero__body {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .homepage .hero__title {
        max-width: none;
    }

    .homepage .hero__proof {
        grid-template-columns: 1fr;
    }

    .homepage .hero__image-column {
        min-height: auto;
        padding: 1rem 1rem 1.5rem;
    }

    .homepage-marquee__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .homepage-marquee__intro {
        max-width: none;
    }

    .homepage-marquee__items {
        grid-template-columns: repeat(2, max-content);
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 600px) {
    .homepage-marquee {
        margin-bottom: 1.5rem;
    }

    .homepage-marquee__items {
        grid-template-columns: 1fr;
    }

    .homepage .hero__body,
    .homepage .hero__paragraph,
    .homepage .hero__microcopy {
        text-align: center;
    }

    .homepage .hero__btns-container {
        justify-content: center;
    }

    .homepage .hero__proof {
        text-align: left;
    }

    .homepage .product-slider .owl-nav,
    .homepage .testimonial-slider .owl-nav {
        position: static;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .homepage .homepage-suite-card .caption {
        text-align: center;
        padding-left: 1.4rem !important;
        padding-right: 1.4rem !important;
    }

    .homepage-marquee {
        margin-top: 0.2rem;
    }
}

/* Premium SaaS homepage redesign overrides */
.homepage .hero-nav {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 0.95rem clamp(1.25rem, 3vw, 2.5rem);
    background: #fff;
    border: none;
    border-radius: 0 0 1.35rem 1.35rem;
    box-shadow: none;
    backdrop-filter: none;
}

.homepage .hero-topbar + .hero {
    padding-top: calc(var(--hero-nav-height) + 0.75rem);
}

.homepage .fixed-nav-container {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
    border-radius: 0 0 1.35rem 1.35rem;
}

.homepage .hero-nav__logo {
    height: 42px;
}

.homepage .hero-nav__link {
    font-weight: 600;
    color: #223657;
}

.homepage .hero__content {
    padding-top: 0.25rem;
}

.homepage .hero__row {
    position: static;
    height: auto;
    margin: 0;
}

.homepage .hero__empty-column {
    display: none;
}

.homepage .hero__body,
.homepage .hero__image-column {
    position: relative;
    z-index: 1;
}

.homepage .hero__body {
    max-width: 640px;
}

.homepage .hero__title {
    color: #10284d;
    background: none;
    -webkit-text-fill-color: initial;
}

.homepage .hero__paragraph {
    width: 100%;
}

.homepage .hero__image-column {
    padding: 0;
    min-height: auto;
}

.homepage .hero__image-column::before,
.homepage .hero__image-column::after,
.homepage #features .row::before,
.homepage .homepage-stats .container::before,
.homepage-cta::before {
    display: none !important;
}

.homepage .hero__image {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.homepage-marquee {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.homepage .space-between-blocks {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.homepage #Products2 {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.homepage-suite__intro,
.homepage #features .row,
.homepage .homepage-industries__container,
.homepage .homepage-stats .container,
.homepage .block-20 .container,
.homepage .block-39 .container {
    max-width: 1120px;
}

.homepage-suite__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.homepage .homepage-suite-card {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 1.55rem;
    border-radius: 1.5rem !important;
}

.homepage .homepage-suite-card .homepage-suite-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.homepage .homepage-suite-card .icons_one {
    width: 4rem;
    height: 4rem;
    margin: 0;
    flex-shrink: 0;
}

.homepage .homepage-suite-card .caption {
    padding: 0 !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.homepage .homepage-suite-card .homepage-suite-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1 1 auto;
}

.homepage .homepage-suite-card .role {
    min-height: 0;
    margin-bottom: 1.2rem;
}

.homepage .homepage-suite-card .work-at {
    margin-top: auto;
}

.homepage .homepage-suite-card .homepage-suite-card__footer {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(219, 234, 254, 0.95);
}

.homepage #features .row {
    align-items: start;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.homepage #features .card-1,
.homepage .homepage-industries__grid .block-2-card,
.homepage .content-block,
.homepage .testimonial-card-1 {
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.homepage-industries__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.homepage .homepage-stats {
    margin-top: 0;
}

.homepage .homepage-stats .container {
    padding: 0;
}

.homepage-stats__panel {
    padding: 2.35rem 2rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(191, 219, 254, 0.24), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.96));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.045);
}

.homepage-stats__intro {
    max-width: 50rem;
    margin-bottom: 1.55rem;
}

.homepage-stats__title {
    margin: 0 0 0.9rem;
    color: #10284d;
    font-size: clamp(1.82rem, 2.45vw, 2.8rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.homepage-stats__description {
    color: #52627a;
    font-size: 0.95rem;
    line-height: 1.64;
}

.homepage .stats {
    margin-top: 1.55rem;
    padding: 0 !important;
    gap: 0;
    background: transparent !important;
    color: inherit !important;
    border-radius: 0 !important;
}

.homepage .stats__li {
    padding: 0.55rem;
    border-right: none !important;
    border-bottom: none !important;
}

.homepage-stat-card {
    position: relative;
    height: 100%;
    padding: 1.2rem 1rem 1.1rem;
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 255, 0.96));
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.035);
}

.homepage-stat-card::before {
    content: "";
    position: absolute;
    top: 0.95rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.6rem;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
}

.homepage-stat-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    padding-top: 0.15rem;
    color: #7a8aa3;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage-stat-card__number {
    display: block;
    margin-bottom: 0.35rem;
    color: #1d4ed8;
    font-size: clamp(1.75rem, 2.2vw, 2.3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.homepage-stat-card__label {
    margin: 0;
    color: #5d6d84;
    font-size: 0.86rem;
    line-height: 1.45;
    font-weight: 600;
}

.homepage .testimonial-slider {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.homepage .testimonial-slider .item {
    width: auto !important;
    margin: 0 !important;
}

.homepage .testimonial-slider .owl-stage-outer,
.homepage .testimonial-slider .owl-stage,
.homepage .testimonial-slider .owl-item {
    width: auto !important;
    transform: none !important;
}

.homepage .testimonial-slider .owl-nav,
.homepage .testimonial-slider .owl-dots,
.homepage .product-slider .owl-nav,
.homepage .product-slider .owl-dots {
    display: none !important;
}

.homepage .testimonial-card-1 {
    margin-top: 0 !important;
    padding: 2rem;
}

.homepage-faq__panel {
    padding: 2.2rem 2rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(191, 219, 254, 0.24), transparent 25%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.96));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.045);
}

.homepage-faq__intro {
    max-width: 50rem;
}

.homepage-faq__title {
    margin: 0 0 0.9rem;
    color: #10284d;
    font-size: clamp(1.82rem, 2.45vw, 2.8rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.homepage-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.homepage-faq-card {
    position: relative;
    padding: 1.35rem 1.25rem 1.2rem;
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 255, 0.95));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}

.homepage-faq-card::before {
    content: "";
    position: absolute;
    top: 1.05rem;
    left: 1.25rem;
    width: 2.2rem;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
}

.homepage-faq-card__question {
    margin: 0 0 0.8rem;
    padding-top: 0.55rem;
    color: #15305a;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.homepage-faq-card__answer {
    margin: 0;
    color: #5b6b84;
    font-size: 0.91rem;
    line-height: 1.6;
}

@media only screen and (max-width: 991px) {
    .homepage-faq__grid {
        grid-template-columns: 1fr;
    }
}

.homepage .block-20-person {
    transform: none;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.homepage .block-20-person__avatar {
    flex-shrink: 0;
}

.homepage .testimonial-card-1__quote-symbol {
    position: static;
    width: auto;
    height: auto;
    margin-top: 1rem;
    background: transparent;
    justify-content: flex-start;
    font-size: 1.6rem;
}

.homepage .homepage-cta {
    margin-top: 4rem;
    margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
    .homepage-suite__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homepage .testimonial-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 991px) {
    .homepage .hero {
        padding-bottom: 2rem;
    }

    .homepage .hero__title {
        font-size: clamp(2.5rem, 11vw, 4.3rem);
        line-height: 1.02;
    }

    .homepage .hero__body {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .homepage .hero__content {
        display: block;
    }

.homepage .hero__image {
        margin-top: 1rem;
    }

    .homepage-industries__panel {
        padding: 1.6rem;
    }
}

@media only screen and (max-width: 767px) {
    .homepage-suite__grid,
    .homepage-industries__grid,
    .homepage .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .homepage .hero-nav {
        width: 100%;
        padding: 0.85rem 0;
    }

    .homepage .hero__proof {
        gap: 0.75rem;
    }

    .homepage .hero__proof-item {
        font-size: 0.94rem;
    }

    .homepage-industries__panel {
        padding: 1.25rem;
    }
}

.homepage-industries {
    position: relative;
}

.homepage-industries__panel {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 2.1rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(147, 197, 253, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.95));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.05);
}

.homepage-industries__intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
    width: 100%;
    text-align: center;
    align-items: center;
}

.homepage-industries__title {
    margin: 0 0 1rem;
    color: #10284d;
    font-size: clamp(1.85rem, 2.65vw, 2.9rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.homepage-industries__description {
    margin-top: 0.35rem;
    color: #42536d;
    font-size: 1rem;
    line-height: 1.75;
    flex: 1 1 auto;
    max-width: 58rem;
}

.homepage-industries__description p {
    margin-bottom: 1rem;
}

.homepage-industries__intro-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.homepage-industries__cta {
    margin-top: 0.35rem;
    flex: 0 0 auto;
}

.homepage-industries__grid {
    width: 100%;
    margin-top: 0.1rem;
    align-self: stretch;
}

.homepage-industry-card {
    display: flex;
    gap: 1rem;
    min-height: 100%;
    padding: 1.2rem 1.15rem;
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 255, 0.95));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.homepage-industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 197, 253, 0.95);
    box-shadow: 0 22px 44px rgba(37, 99, 235, 0.08);
}

.homepage-industry-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(96, 165, 250, 0.18));
    color: #2563eb;
    font-size: 1rem;
}

.homepage-industry-card__title {
    margin: 0 0 0.45rem;
    color: #15305a;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.homepage-industry-card__text {
    margin: 0;
    color: #5b6b84;
    font-size: 0.91rem;
    line-height: 1.56;
}

@media only screen and (max-width: 991px) {
    .homepage-industries__intro-row {
        flex-direction: column;
        gap: 1rem;
    }

    .homepage-industries__grid {
        grid-template-columns: 1fr;
    }
}

.homepage .hero__capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0 0 1.35rem;
}

.homepage .hero__capability {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(191, 219, 254, 0.95);
    color: #214171;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.homepage .hero__content {
    display: block;
    max-width: 1400px !important;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.homepage .hero__row {
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 0.2rem 0 0;
    --bs-gutter-x: 4.5rem;
}

.homepage .hero__stats {
    margin-bottom: 0;
}

.homepage .hero__body {
    max-width: none;
    flex: 0 0 52%;
    max-width: 52%;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0.35rem;
}

.homepage .homepage-kicker {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(147, 197, 253, 0.75);
    color: #1d4ed8;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.07);
}


.homepage .hero__title {
    max-width: 17ch;
    font-size: clamp(1.95rem, 3.45vw, 3.85rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 1.1rem !important;
}

.homepage .hero__paragraph {
    max-width: 100%;
    margin-bottom: 0.9rem !important;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #52627a;
}

.homepage .hero__proof {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    max-width: 100%;
    margin-bottom: 0.9rem;
}

.homepage .hero__proof-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding-left: 0;
    font-size: 0.92rem;
    line-height: 1.42;
    color: #17355f;
}

.homepage .hero__proof-item::before {
    display: none;
}

.homepage .hero__proof-icon {
    flex: 0 0 1.9rem;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.05rem;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(56, 189, 248, 0.12));
    color: #2563eb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.homepage .hero__proof-icon i {
    font-size: 0.8rem;
}

.homepage .hero__btns-container {
    margin-bottom: 0.45rem;
    gap: 0.9rem;
}

.homepage .hero__btns-container .btn {
    min-width: 190px;
    padding: 0.88rem 1.35rem;
    font-size: 0.95rem;
    border-radius: 1rem;
}

.homepage .hero__btns-container .btn-primary {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.homepage .hero__btns-container .btn-secondary {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(191, 219, 254, 0.95);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.homepage .hero__microcopy {
    max-width: 34rem;
    color: #5f6f86;
    font-size: 0.85rem;
    line-height: 1.4;
}

.homepage .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.65rem;
}

.homepage .hero__stat {
    position: relative;
    padding: 0.72rem 0.82rem;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.88));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.035);
    backdrop-filter: blur(8px);
}

.homepage .hero__stat-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.22rem;
}

.homepage .hero__stat-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(125, 211, 252, 0.16));
    color: #1d4ed8;
    flex-shrink: 0;
}

.homepage .hero__stat-icon i {
    font-size: 0.78rem;
}

.homepage .hero__stat-value {
    display: block;
    color: #17386f;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.homepage .hero__stat-label {
    display: block;
    color: #52627a;
    font-size: 0.7rem;
    line-height: 1.35;
}

.homepage .hero__image-column {
    flex: 0 0 48%;
    max-width: 48%;
    padding-left: 1rem;
    align-self: center;
}

.homepage .hero__image-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 760px;
    padding: 1.05rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.78));
    border: 1px solid rgba(191, 219, 254, 0.95);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

.homepage .hero__image-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.homepage .hero__image-shell::after {
    content: "";
    position: absolute;
    inset: auto 10% 2% 10%;
    height: 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0));
    filter: blur(16px);
    z-index: 0;
}

.homepage .hero__image-column::before,
.homepage .hero__image-column::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.homepage .homepage-suite-card:hover .block-2-card__title_new {
    color: #1d4ed8;
}

.homepage .hero__image {
    position: relative;
    z-index: 1;
    max-height: 39rem;
    filter: drop-shadow(0 24px 44px rgba(15, 23, 42, 0.12));
}

.homepage .hero__visual-pill {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(191, 219, 254, 0.85);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    color: #17355f;
    backdrop-filter: blur(10px);
}

.homepage .hero__visual-pill--top {
    top: 5%;
    left: 2%;
}

.homepage .hero__visual-pill--bottom {
    right: 4%;
    bottom: 8%;
}

.homepage .hero__visual-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(96, 165, 250, 0.16));
    color: #2563eb;
    font-size: 0.74rem;
    flex-shrink: 0;
}

.homepage .hero__visual-text {
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.homepage .hero__image-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.56rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(191, 219, 254, 0.9);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
    color: #17355f;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
}

.homepage .hero__image-badge--bottom {
    left: 6%;
    bottom: 10%;
}

@media only screen and (max-width: 991px) {
    .homepage .hero__row {
        min-height: auto;
        padding: 0.35rem 0 1.15rem;
        --bs-gutter-x: 1.5rem;
    }

    .homepage .hero__body,
    .homepage .hero__image-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-top: 1rem;
    }

    .homepage .hero__stats {
        grid-template-columns: 1fr;
    }

    .homepage .hero__image-badge {
        position: static;
        display: inline-flex;
        margin: 0.35rem auto 0;
    }

    .homepage .hero__image-shell {
        text-align: center;
        padding: 0.75rem;
    }

    .homepage .hero__visual-pill {
        position: static;
        margin: 0.35rem auto 0;
    }

}

@media only screen and (max-width: 767px) {
    .homepage .hero__title {
        font-size: clamp(1.85rem, 7.8vw, 2.8rem);
        max-width: none;
    }

    .homepage .hero__image-shell {
        padding: 0.9rem;
        overflow: visible;
    }

    .homepage .hero__visual-pill {
        position: absolute;
        margin: 0;
        padding: 0.34rem 0.48rem;
        gap: 0.32rem;
        max-width: 34%;
    }

    .homepage .hero__visual-pill--top {
        top: 6%;
        left: -2%;
    }

    .homepage .hero__visual-pill--bottom {
        right: -2%;
        bottom: 8%;
    }

    .homepage .hero__visual-icon {
        width: 1.28rem;
        height: 1.28rem;
        font-size: 0.64rem;
    }

    .homepage .hero__visual-text {
        font-size: 0.64rem;
        line-height: 1.18;
    }

    .homepage .hero__proof-item {
        font-size: 0.92rem;
    }

    .homepage .hero__proof-icon {
        margin-top: 0;
    }

    .homepage .hero__btns-container .btn {
        min-width: 0;
        width: 100%;
    }

    .homepage .hero__image-badge {
        font-size: 0.76rem;
        padding: 0.55rem 0.8rem;
    }
}

@media only screen and (max-width: 600px) {
    .homepage .fixed-nav-container,
    .homepage .hero-topbar,
    .homepage .hero-nav {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .homepage .fixed-nav-container {
        height: auto !important;
        border-radius: 0 0 1.1rem 1.1rem;
        overflow: visible;
    }

    .homepage .hero-nav {
        margin: 0 !important;
        padding: 0.85rem 1rem !important;
        min-height: 72px !important;
        border-radius: 0 0 1.1rem 1.1rem;
    }

    .homepage .hero-nav > .nav {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .homepage .hero-nav > .nav > .hero-nav__item:first-child {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        margin: 0 !important;
    }

    .homepage .hero-nav > .nav > .hero-nav__item:first-child > a:first-child {
        display: inline-flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
    }

    .homepage .hero-nav > .nav > .hero-nav__item:first-child > .mx-2 {
        display: none !important;
    }

    .homepage .hero-nav__logo {
        position: static !important;
        top: auto !important;
        display: block;
        height: 38px;
    }

    .homepage .hero-nav__mobile-actions {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.65rem !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        position: static !important;
        bottom: auto !important;
        padding-left: 0 !important;
    }

    .homepage .show-btn-ctm {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0.58rem 0.95rem !important;
        font-size: 0.95rem !important;
        line-height: 1 !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        text-align: center !important;
    }

    .homepage .hero-nav__mobile-toggle,
    .homepage [open-nav-menu] {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
        background: transparent !important;
        border: 0 !important;
    }

    .homepage .hero-nav__mobile-toggle i.fas.fa-bars,
    .homepage i.fas.fa-bars {
        font-size: 2rem !important;
        line-height: 1 !important;
    }

    .homepage .hero__nav-list.ft-menu {
        left: 0 !important;
        right: 0 !important;
    }

    .homepage .ft-menu__slider {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .homepage .hero-nav.container,
    .homepage .hero-nav.position-relative.container {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.homepage-platform {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

.homepage-platform__group {
    padding: 1.75rem;
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.9));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.homepage-platform__group-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

.homepage-platform__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.55rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.homepage-platform__group-title {
    margin: 0;
    color: #10284d;
    font-size: clamp(1.38rem, 1.9vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.homepage-platform__group-lead {
    margin: 0;
    color: #52627a;
    font-size: 0.95rem;
    line-height: 1.62;
}

.homepage .homepage-suite-card__pill {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    margin-left: auto;
    padding: 0.34rem 0.68rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 0.74rem;
    font-weight: 700;
}

.homepage .homepage-suite__description {
    max-width: 48rem;
    color: #52627a;
    font-size: 0.98rem;
    line-height: 1.68;
}

.homepage .homepage-suite-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.homepage .homepage-suite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    border-color: rgba(96, 165, 250, 0.4) !important;
}

.homepage .homepage-suite-card .role {
    color: #52627a;
    line-height: 1.56;
    font-size: 0.92rem;
}

.homepage .homepage-suite-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.homepage-features {
    position: relative;
}

.homepage-features__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.7rem;
    padding: 2.1rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(191, 219, 254, 0.34), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.05);
}

.homepage-features__intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 72rem;
    gap: 1.1rem;
    margin-inline: auto;
    width: 100%;
    align-items: center;
}

.homepage-features__intro .homepage-kicker {
    width: fit-content;
    align-self: center;
}

.homepage-features__intro-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: start;
    width: 100%;
    justify-items: center;
}

.homepage-features__copy {
    display: grid;
    align-content: start;
    max-width: 54rem;
    justify-items: center;
    text-align: center;
    margin-inline: auto;
}

.homepage-features__title {
    margin: 0 0 0.75rem;
    color: #10284d;
    font-size: clamp(1.82rem, 2.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.homepage-features__sublead {
    margin: -0.05rem 0 0.75rem;
    color: #607089;
    font-size: 0.91rem;
    line-height: 1.56;
}

.homepage-features__visuals {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.3rem;
    margin-bottom: 0.45rem;
    justify-items: start;
    align-self: stretch;
    width: 100%;
}

.homepage-features__visuals-head {
    justify-items: start;
    text-align: left;
    width: 100%;
}

.homepage-features__snapshot {
    width: 100%;
    padding: 0;
    border-radius: 1.2rem;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.homepage-features__snapshot-head {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    justify-items: start;
    text-align: left;
}

.homepage-features__snapshot-head strong {
    color: #15305a;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.45;
}

.homepage-features__snapshot-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.homepage-features__modules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.homepage-features__module {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 100%;
    padding: 1.02rem 0.98rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.94));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.035);
    color: #17355f;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
}

.homepage-features__module i {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.82rem;
}


.homepage-features__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.15rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.homepage-features__summary-item {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    padding: 0.9rem 1rem;
    border-radius: 1.05rem;
    background: rgba(246, 249, 255, 0.92);
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.025);
    color: #17355f;
    font-size: 0.88rem;
    line-height: 1.46;
}

.homepage-features__summary-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(56, 189, 248, 0.12));
    color: #2563eb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.homepage-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.homepage-features__cards-panel {
    display: grid;
    gap: 0.95rem;
    align-content: start;
    margin-top: 0.45rem;
}

.homepage-features__cards-head {
    display: grid;
    gap: 0.25rem;
    align-content: start;
    justify-items: center;
    text-align: center;
    width: 100%;
}

.homepage-features__cards-kicker {
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.homepage-features__cards-text {
    margin: 0;
    color: #607089;
    font-size: 0.9rem;
    line-height: 1.48;
    max-width: 48rem;
}

.homepage-feature-card {
    display: flex;
    gap: 0.9rem;
    min-height: 100%;
    padding: 1.05rem 1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.94));
    border: 1px solid rgba(219, 234, 254, 0.95);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.035);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.homepage-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 197, 253, 0.95);
    box-shadow: 0 22px 44px rgba(37, 99, 235, 0.08);
}

.homepage-feature-card__icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(96, 165, 250, 0.18));
    color: #2563eb;
    font-size: 1rem;
}

.homepage-feature-card__title {
    margin: 0 0 0.45rem;
    color: #15305a;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.homepage-feature-card__text {
    margin: 0;
    color: #5b6b84;
    font-size: 0.88rem;
    line-height: 1.5;
}

.homepage #Products2,
.homepage-features,
.homepage .homepage-industries,
.homepage-marquee,
.homepage .homepage-stats,
.homepage .block-20,
.homepage .homepage-faq,
.homepage .homepage-cta {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

@media only screen and (max-width: 991px) {
    .homepage .space-between-blocks {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .homepage-features__panel {
        padding: 1.5rem;
    }

    .homepage-features__intro-top {
        gap: 1rem;
    }

    .homepage-features__summary {
        grid-template-columns: 1fr;
    }

    .homepage-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homepage-features__cards-panel {
        gap: 0.9rem;
    }

    .homepage-platform__group-header {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .homepage-platform__group {
        padding: 1.3rem;
    }

    .homepage .homepage-stats .container {
        padding: 1.8rem 1rem;
    }
}

@media only screen and (max-width: 767px) {
.homepage .homepage-kicker {
        padding: 0.4rem 0.75rem;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .homepage-kicker__dot {
        font-size: 1rem;
        margin: 0 0.02rem 0 0.005rem;
    }

    .homepage-features__title {
        font-size: clamp(1.62rem, 7.4vw, 2.2rem);
    }

    .homepage-suite__title,
    .homepage-industries__title,
    .homepage-stats__title,
    .homepage-faq__title,
    .homepage-cta .block-29__title {
        font-size: clamp(1.68rem, 7.1vw, 2.3rem);
    }

    .homepage-section__lead,
    .homepage .homepage-suite__description,
    .homepage-platform__group-lead,
    .homepage-stats__description,
    .homepage .block-29__paragraph {
        font-size: 0.92rem;
        line-height: 1.58;
    }

    .homepage-platform__group-title,
    .homepage-industry-card__title,
    .homepage-feature-card__title,
    .homepage-faq-card__question {
        font-size: 0.95rem;
    }

    .homepage-industry-card__text,
    .homepage-feature-card__text,
    .homepage-faq-card__answer,
    .homepage-stat-card__label {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .homepage-features__modules {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .homepage-features__grid {
        grid-template-columns: 1fr;
    }

    .homepage-feature-card {
        padding: 1.05rem 1rem;
    }

    .homepage .space-between-blocks {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .homepage .hero {
        padding-bottom: 1.8rem;
        background: #fff;
    }

    .homepage .hero__body {
        gap: 0;
    }

    .homepage .hero__paragraph {
        margin-bottom: 1rem !important;
    }

    .homepage .hero__proof {
        margin-bottom: 0.85rem;
    }

    .homepage .hero__btns-container {
        margin-top: 0.2rem;
        margin-bottom: 0.75rem;
    }

    .homepage .hero__microcopy {
        margin-top: 0;
        margin-bottom: 0.85rem;
    }

    .homepage .hero__stats {
        gap: 0.55rem;
        margin-top: 0.2rem;
    }

    .homepage-marquee {
        margin-top: 0.3rem;
        margin-bottom: 0.65rem;
    }

    .homepage-marquee__inner {
        padding: 0.9rem 0.9rem;
        gap: 0.8rem;
    }

    .homepage .homepage-stats {
        margin-top: 1.35rem;
    }

    .homepage-suite__intro {
        gap: 0.7rem;
    }

    .homepage-suite__intro.mb-4 {
        margin-top: 1rem;
        margin-bottom: 1rem !important;
    }

    .homepage .homepage-platform {
        gap: 1.2rem;
        margin-top: 1.4rem;
    }

    .homepage-platform__group {
        padding: 1.1rem;
    }

    .homepage-platform__group-header {
        margin-bottom: 1rem;
    }

    .homepage-features__panel {
        gap: 1rem;
        padding: 1.2rem;
    }

    .homepage-features__intro {
        gap: 0.75rem;
    }

    .homepage-features__summary {
        gap: 0.65rem;
    }

    .homepage-features__visuals {
        gap: 0.5rem;
    }

    .homepage-features__cards-panel {
        gap: 0.6rem;
    }

    .homepage .homepage-industries__container,
    .homepage .homepage-industries__panel {
        gap: 1rem;
    }

    .homepage .homepage-stats .container {
        padding: 1.45rem 0.9rem;
    }

    .homepage .stats {
        margin-top: 1rem;
    }

    .homepage-faq__panel {
        padding: 1.45rem 1rem;
    }

    .homepage-faq__intro {
        margin-bottom: 1.4rem !important;
    }

    .homepage-faq__grid {
        gap: 0.8rem;
    }

    .homepage .block-20 .col-lg-9 {
        margin-bottom: 1.8rem !important;
    }

    .homepage .testimonial-slider {
        gap: 0.85rem;
        padding-top: 0.2rem;
    }

    .homepage .homepage-cta {
        margin-top: 2.4rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}


.homepage .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}
