: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);
}

@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;
}

@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%;
    }
}

.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;
}

/*------------------------------*/
/*--Industries Refresh--------*/
/*------------------------------*/
.block-2 {
    --industry-panel-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.92));
    --industry-border: rgba(148, 163, 184, 0.18);
}

.industries__background-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.industries__text-content {
    max-width: 33rem;
}

.industries__button-container {
    margin-top: 2rem;
}

.industries__cta {
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
    box-shadow: 0 14px 35px rgba(79, 70, 229, 0.24);
}

.industries__card-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-height: auto;
    align-content: start;
}

.industry-card-stack__item {
    position: relative;
    width: auto;
    max-width: none;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    min-height: 100%;
}

.industry-card-stack__item[data-card-index] {
    grid-column: span 1;
    grid-row: span 1;
}

.industry-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-height: 100%;
    padding: 1.35rem;
    border: 1px solid var(--industry-border);
    border-radius: 26px;
    background: var(--industry-panel-bg);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.industry-card__content::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 0 0 100% 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(34, 197, 94, 0));
}

.industry-card__content::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0));
}

.industry-card-stack__item:hover .industry-card__content {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12);
}

.industry-card__meta,
.industry-card__main,
.industry-card__footer,
.industry-card__progress-bar {
    position: relative;
    z-index: 1;
}

.industry-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.industry-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    color: #4338ca;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.industry-card__eyebrow {
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.industry-card__main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.industry-card__icon-wrapper {
    margin-top: 0;
}

.industry-card__line-art-icon {
    width: 3.5rem;
    height: 3.5rem;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #eef2ff 55%, #f5f3ff);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.14);
}

.industry-card__line-art-icon::before {
    inset: auto;
    top: 0.45rem;
    right: 0.45rem;
    width: 0.5rem;
    height: 0.5rem;
    border: none;
    border-radius: 999px;
    opacity: 1;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
}

.industry-card__line-art-icon i {
    font-size: 1.1rem;
    color: #4338ca;
}

.industry-card__title {
    margin-bottom: 0.55rem;
    font-size: 1.15rem;
}

.industry-card__description {
    margin-bottom: 0;
    font-size: 0.93rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industry-card__footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.industry-card__signal {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #14b8a6, #22c55e);
    box-shadow: 0 0 0 0.35rem rgba(20, 184, 166, 0.12);
}

.industry-card__footer-text {
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
}

.industry-card__progress-bar {
    margin-top: 0.1rem;
}

@media (max-width: 1199px) {
    .industries__card-stack {
        gap: 0.9rem;
    }
}

@media (max-width: 991px) {
    .industries__text-content {
        margin-left: auto;
        margin-right: auto;
    }

    .industries__card-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 0;
    }

    .industry-card-stack__item,
    .industry-card-stack__item[data-card-index] {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .industries__card-stack {
        grid-template-columns: 1fr;
    }

    .industry-card__content {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .industry-card__main {
        grid-template-columns: 1fr;
    }

    .industry-card__icon-wrapper {
        margin-bottom: -0.2rem;
    }

    .industry-card__description {
        -webkit-line-clamp: unset;
        overflow: visible;
        display: block;
    }
}

@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;
}

/*------------------------------*/
/*--Industries Bento----------*/
/*------------------------------*/
.block-2 {
    --industry-violet: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 45%, #a855f7 100%);
    --industry-glass: rgba(255, 255, 255, 0.72);
    --industry-glass-border: rgba(255, 255, 255, 0.55);
    --industry-shadow: 0 28px 80px rgba(76, 29, 149, 0.12);
    background:
        radial-gradient(circle at top left, rgba(196, 181, 253, 0.42), transparent 34%),
        radial-gradient(circle at bottom right, rgba(224, 231, 255, 0.9), transparent 32%),
        linear-gradient(180deg, #fcfcff 0%, #f7f7ff 48%, #f3f4ff 100%);
}

.block-2::before {
    background:
        radial-gradient(circle at 18% 28%, rgba(167, 139, 250, 0.12), transparent 0, transparent 26%),
        radial-gradient(circle at 84% 18%, rgba(129, 140, 248, 0.08), transparent 0, transparent 24%);
}

.industries__text-content {
    max-width: 31rem;
}

.industries__title {
    margin-bottom: 1.2rem;
    font-size: clamp(2.9rem, 5vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.industries__paragraph {
    max-width: 29rem;
    color: #334155;
    font-size: 1.12rem;
    line-height: 1.85;
}

.industries__button-container {
    margin-top: 2.15rem;
}

.industries__cta.btn.btn-primary {
    border: none;
    border-radius: 999px;
    padding: 1rem 1.75rem;
    background: var(--industry-violet);
    box-shadow: 0 18px 35px rgba(109, 40, 217, 0.24);
}

.industries__cta.btn.btn-primary:hover,
.industries__cta.btn.btn-primary:focus {
    background: var(--industry-violet);
    box-shadow: 0 22px 46px rgba(109, 40, 217, 0.3);
    transform: translateY(-1px);
}

.industries__bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, auto);
    gap: 1.15rem;
    align-content: start;
}

.industry-tile {
    grid-column: span 1;
    position: relative;
    min-width: 0;
}

.industry-tile--featured {
    grid-column: 1 / -1;
}

.industry-tile--featured .industry-tile__shell {
    min-height: 240px;
}

.industry-tile__shell {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 1.25rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.6));
    border: 1px solid var(--industry-glass-border);
    box-shadow: var(--industry-shadow);
    backdrop-filter: blur(18px);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.industry-tile__shell::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(139, 92, 246, 0.02));
    z-index: -2;
}

.industry-tile__shell::after {
    content: '';
    position: absolute;
    inset: auto -2.4rem -3rem auto;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.14), rgba(168, 85, 247, 0));
    z-index: -1;
}

.industry-tile__accent {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 0.28rem;
    background: linear-gradient(90deg, rgba(109, 40, 217, 0.95), rgba(6, 182, 212, 0.7), rgba(244, 114, 182, 0.75));
    opacity: 0.85;
}

.industry-tile__topline,
.industry-tile__body,
.industry-tile__footer {
    position: relative;
    z-index: 1;
}

.industry-tile__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.industry-tile__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    background: rgba(109, 40, 217, 0.08);
    color: #5b21b6;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.industry-tile__eyebrow {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.industry-tile__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.05rem;
    align-items: start;
}

.industry-tile__icon-wrap {
    position: relative;
}

.industry-tile__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 22px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6 50%, #22d3ee);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 18px 30px rgba(124, 58, 237, 0.24),
        0 10px 0 rgba(76, 29, 149, 0.08);
    transform: perspective(100px) rotateX(8deg);
}

.industry-tile__icon::before {
    content: '';
    position: absolute;
    inset: 0.32rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02));
}

.industry-tile__icon i {
    position: relative;
    z-index: 1;
    font-size: 1.55rem;
    text-shadow: 0 6px 14px rgba(49, 46, 129, 0.28);
}

.industry-tile__title {
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.industry-tile__description {
    margin-bottom: 0;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.72;
    overflow: visible;
}

.industry-tile__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-top: 1.15rem;
}

.industry-tile__signal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.industry-tile__signal span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b5cf6, #22d3ee);
    box-shadow: 0 0 0 0.4rem rgba(139, 92, 246, 0.1);
}

.industry-tile__link {
    color: #5b21b6;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.industry-tile__link:hover,
.industry-tile__link:focus {
    color: #4c1d95;
    text-decoration: none;
}

.industry-tile:hover .industry-tile__shell {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow:
        0 30px 80px rgba(124, 58, 237, 0.16),
        0 0 0 1px rgba(168, 85, 247, 0.12);
}

.industry-tile:hover .industry-tile__link,
.industry-tile:focus-within .industry-tile__link {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1399px) {
    .industry-tile__shell {
        padding: 1.18rem;
    }
}

@media (max-width: 991px) {
    .industries__text-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 36rem;
        text-align: center;
    }

    .industries__paragraph {
        margin-left: auto;
        margin-right: auto;
    }

    .industries__bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0.75rem;
    }

    .industry-tile,
    .industry-tile--featured {
        grid-column: span 1;
    }

    .industry-tile--featured .industry-tile__shell {
        min-height: 100%;
    }

    .industry-tile__link {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    .industries__title {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }

    .industries__paragraph {
        font-size: 1rem;
    }

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

    .industry-tile,
    .industry-tile--featured {
        grid-column: span 1;
    }

    .industry-tile__shell {
        padding: 1.1rem;
        border-radius: 24px;
    }

    .industry-tile__body {
        grid-template-columns: 1fr;
    }

    .industry-tile__icon {
        width: 4rem;
        height: 4rem;
    }

    .industry-tile__description {
        overflow: visible;
    }
}

/*------------------------------*/
/*--Footer Mobile-------------*/
/*------------------------------*/
@media (max-width: 767px) {
    .footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        text-align: left;
    }

    .footer__column {
        align-items: flex-start;
    }

    .footer__column-title::after {
        left: 0;
        transform: none;
    }

    .footer__social-column {
        grid-column: 1 / -1;
        align-items: flex-start;
    }

    .footer__social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.85rem;
    }

    .footer__links li {
        margin-bottom: 0.45rem;
    }
}

/*------------------------------*/
/*--Promo Offer---------------*/
/*------------------------------*/
.hero__subtitle {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.7;
    color: #334155;
    max-width: 32rem;
}

.hero__price-highlight,
.cta__price-highlight {
    color: #6d28d9;
    font-weight: 900;
}

.cta__price-highlight {
    color: #bef264;
    text-shadow: 0 0 18px rgba(190, 242, 100, 0.22);
}

.hero__btn-container,
.cta__button-container {
    position: relative;
}

.hero__btn-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.cta__button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.hero__offer-badge,
.cta__offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    margin-bottom: 0;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, 0.22);
    background: rgba(255, 255, 255, 0.62);
    color: #4c1d95;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.12);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    width: fit-content;
    animation: promoPulse 2.4s ease-in-out infinite;
}

.hero__offer-badge-dot,
.cta__offer-badge-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #84cc16, #22c55e);
    box-shadow: 0 0 0 0.35rem rgba(132, 204, 22, 0.16);
    flex-shrink: 0;
}

.hero__no-credit,
.cta__microcopy {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 600;
}

.cta__microcopy {
    justify-content: center;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    width: 100%;
}

@keyframes promoPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(109, 40, 217, 0.12);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(109, 40, 217, 0.18);
    }
}

@media (max-width: 767px) {
    .hero__btn-container {
        align-items: flex-start;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__offer-badge,
    .cta__offer-badge {
        font-size: 0.74rem;
    }

    .hero__no-credit,
    .cta__microcopy {
        font-size: 0.84rem;
    }
}

.floating-whatsapp {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow:
        0 18px 38px rgba(34, 197, 94, 0.22),
        0 0 0 10px rgba(34, 197, 94, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-decoration: none;
    animation: floatingWhatsappPulse 2.8s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    transform: scale(1.1);
    box-shadow:
        0 22px 42px rgba(34, 197, 94, 0.28),
        0 0 0 12px rgba(34, 197, 94, 0.12);
    text-decoration: none;
}

.floating-whatsapp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(145deg, #25d366, #16a34a);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 14px 28px rgba(34, 197, 94, 0.28);
    color: #fff;
    font-size: 2.8rem;
}

.floating-whatsapp__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.92);
    animation: floatingWhatsappBadgePulse 1.8s ease-in-out infinite;
}

@keyframes floatingWhatsappPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow:
            0 18px 38px rgba(34, 197, 94, 0.22),
            0 0 0 10px rgba(34, 197, 94, 0.08);
    }

    50% {
        transform: translateY(-3px);
        box-shadow:
            0 24px 44px rgba(34, 197, 94, 0.28),
            0 0 0 12px rgba(34, 197, 94, 0.1);
    }
}

@keyframes floatingWhatsappBadgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@media (max-width: 767px) {
    .floating-whatsapp {
        right: 1.4rem;
        bottom: 1.4rem;
        width: 60px;
        height: 60px;
    }

    .floating-whatsapp__icon {
        width: 46px;
        height: 46px;
        font-size: 2.4rem;
    }
}
