:root {
    --primary: #1973fe;
    --secondary: #0a1f44;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(135deg, #1973fe 0%, #0ea5e9 100%);
    --gradient-secondary: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);

    /* EXTRA COLORS */
    --Green: #10b981;
    --Yellow: #f59e0b;
    --Blue: #06b7f9;
    --Purple: #a78bfa;
    --Indigo: #6366f1;

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #0f172a;
    --text-secondary: #64748b;

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 8px;

    --space-between-blocks: 3rem;
    /* for mobiles */
    --space-between-blocks-small-screens: 1.5rem;

    /* NEW: Modern transition effects */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@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', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: #f8fafc;
    transition: var(--transition-smooth);
}

@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.9rem 2.2rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn,
.btn:hover,
.btn:focus {
    outline: none;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.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 TITLES & PARAGRAPHS */
.block__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text-primary);
}

.block__title--big {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.5px;
}

@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.85;
    color: var(--text-secondary);
}

.block__paragraph--big {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

@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: var(--elements-roundness);
    color: var(--primary);
    background: linear-gradient(135deg, rgba(25, 115, 254, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.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);
    color: var(--block-text-color);
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(25, 115, 254, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%),
                linear-gradient(to bottom, #ffffff 0%, #f0f9ff 100%);
    border-bottom: 1px solid rgba(25, 115, 254, 0.1);
}

.hero-nav {
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: var(--hero-nav-height);
    display: flex;
    align-items: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(25, 115, 254, 0.1);
}

.hero-nav__item {
    margin: auto;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

@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: linear-gradient(135deg, var(--primary) 0%, var(--Blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero__paragraph {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
    color: var(--text-secondary);
}

@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);
    position: relative;
}

.card-1 {
    height: 100%;
    padding: 1.8rem;
    border-radius: var(--elements-roundness);
    background: #ffffff;
    border: 1px solid rgba(25, 115, 254, 0.1);
    transition: var(--transition-smooth);
}

.card-1:hover {
    box-shadow: 0 20px 25px -5px rgba(25, 115, 254, 0.15);
    border-color: rgba(25, 115, 254, 0.3);
    transform: translateY(-4px);
}

.card-1__title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
}

.card-1__paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.85;
    color: var(--text-secondary);
}

.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;
    overflow: hidden;
}

.block-2-card {
    padding: 1.8rem;
    margin-bottom: 1rem;
    border-radius: var(--elements-roundness);
    background: #ffffff;
    border: 1px solid rgba(25, 115, 254, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

@media (min-width: 992px) {
    .block-2-card {
        padding: 2.2rem;
    }
}

.block-2-card:hover {
    border-color: rgba(25, 115, 254, 0.3);
    box-shadow: 0 20px 25px -5px rgba(25, 115, 254, 0.12);
    transform: translateY(-4px);
}

.block-2-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.46;
    color: var(--text-primary);
}

@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.85;
    margin: 0;
    color: var(--text-secondary);
}

.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-primary);
    color: var(--secondary-invert);
    border-radius: var(--elements-roundness);
    --stats-li-border-color: rgba(255, 255, 255, 0.15);
    padding: 3rem 1.5rem;
}

.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.8rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.stats__text {
    width: 90%;
    margin: auto;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

@media (min-width: 992px) {
    .stats__text {
        width: 100%;
    }
}

/*------------------------------*/
/*--CTA----------------*/
/*------------------------------*/
.block-29 {
    background: var(--gradient-primary);
    color: var(--primary-invert);
    position: relative;
    border-radius: var(--elements-roundness);
    box-shadow: 0 20px 25px -5px rgba(25, 115, 254, 0.25);
}

.block-29__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.block-29__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 500;
}

.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: var(--elements-roundness);
    position: relative;
    padding: 2.5rem 2.3rem 2.2rem 2.3rem;
    background: #ffffff;
    border: 1px solid rgba(25, 115, 254, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 7rem;
    transition: var(--transition-smooth);
}

@media (min-width: 992px) {
    .testimonial-card-1 {
        height: 100%;
        margin-bottom: 0;
    }
}

.testimonial-card-1:hover {
    border-color: rgba(25, 115, 254, 0.3);
    box-shadow: 0 20px 25px -5px rgba(25, 115, 254, 0.12);
    transform: translateY(-4px);
}

.testimonial-card-1__paragraph {
    font-size: 0.98rem;
    opacity: 0.9;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonial-card-1__quote-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--primary-invert);
    font-size: 1.4rem;
    border-radius: 50%;
    position: absolute;
    bottom: -27px;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 10px 15px -3px rgba(25, 115, 254, 0.3);
}

.block-20-person {
    text-align: center;
    transform: translateY(-5.8rem);
    margin-bottom: -4.5rem;
}

.block-20-person__avatar {
    padding: 6px;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 25px -5px rgba(25, 115, 254, 0.25);
    object-fit: cover;
}

.block-20-person__rating {
    font-size: 0.8rem;
    color: #f59e0b;
    letter-spacing: 1px;
}

.block-20-person__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.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: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--elements-roundness);
    background: #f8fafc;
    border: 1px solid rgba(25, 115, 254, 0.1);
    transition: var(--transition-smooth);
}

@media (min-width: 992px) {
    .content-block {
        width: 90%;
    }
}

.content-block:hover {
    border-color: rgba(25, 115, 254, 0.2);
    background: #f1f8ff;
}

.content-block__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .content-block__title {
        font-size: 1.5rem;
    }
}

.content-block__paragraph {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Landing page visual refresh */
:root {
    --primary: #0f766e;
    --secondary: #102a43;
    --primary-invert: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0f766e 0%, #159a8c 100%);
    --gradient-secondary: linear-gradient(135deg, #102a43 0%, #1f4b68 100%);
    --text-primary: #102a43;
    --text-secondary: #526579;
    --elements-roundness: 12px;
    --transition-smooth: all 0.28s cubic-bezier(0.2, 0.75, 0.25, 1);
}

body {
    background: #f7f5ef;
    color: var(--text-primary);
}

.hero {
    min-height: 690px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(242, 130, 91, 0.18), transparent 22rem),
        linear-gradient(110deg, #f7f5ef 0%, #eef5f1 54%, #d9eee8 100%);
    border-bottom: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 28rem;
    height: 28rem;
    right: -11rem;
    bottom: -14rem;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 3rem rgba(15, 118, 110, 0.04), 0 0 0 6rem rgba(15, 118, 110, 0.025);
    pointer-events: none;
}

.fixed-nav-container {
    height: 88px;
    position: relative;
    z-index: 5;
}

.hero-nav {
    width: min(92%, 1220px);
    height: 68px;
    margin: 20px auto 0;
    padding: 0 1.15rem;
    border: 1px solid rgba(16, 42, 67, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 35px rgba(16, 42, 67, 0.08);
    backdrop-filter: blur(18px);
}

.hero-nav__logo {
    height: 48px;
    max-width: 175px;
    object-fit: contain;
}

.hero-nav__item {
    font-size: 0.96rem;
}

.hero-nav__link {
    color: var(--secondary);
    font-weight: 600;
    opacity: 0.78;
    transition: var(--transition-smooth);
}

.hero-nav__link:hover,
.hero-nav__link:focus {
    color: var(--primary);
    opacity: 1;
}

.hero-nav .btn-primary {
    padding: 0.72rem 1.2rem;
    border-radius: 10px;
    box-shadow: none;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__body {
    padding-top: 5.5rem;
    padding-bottom: 8rem;
    animation: landing-rise 0.75s ease both;
}

.hero__title {
    max-width: 780px;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    background: none;
    -webkit-text-fill-color: initial;
    font-size: clamp(2.6rem, 5vw, 5.3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero__paragraph {
    max-width: 620px;
    margin-left: 0;
    color: #526579;
    font-size: 1.12rem;
    line-height: 1.8;
}

.hero__btns-container .btn {
    padding: 0.95rem 1.55rem;
    border-radius: 10px;
}

.hero__btns-container .btn-primary {
    background: #f07856;
    box-shadow: 0 12px 22px rgba(240, 120, 86, 0.25);
}

.hero__btns-container .btn-primary:hover {
    background: #d96143;
}

.hero__image-column {
    border-radius: 28px 0 0 28px;
    box-shadow: -18px 22px 50px rgba(16, 42, 67, 0.12);
    animation: landing-image-in 0.9s 0.12s ease both;
}

.block-1,
.block-20,
.block-39,
.block-44 {
    background: #f7f5ef;
}

.block-1,
.block-20,
.block-39 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.card-1,
.testimonial-card-1,
.content-block {
    border: 1px solid rgba(16, 42, 67, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 9px 28px rgba(16, 42, 67, 0.055);
}

.card-1:hover,
.testimonial-card-1:hover,
.content-block:hover {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 18px 35px rgba(16, 42, 67, 0.1);
    transform: translateY(-5px);
}

.card-1__title,
.content-block__title {
    color: var(--secondary);
}

.fr-icon {
    color: var(--primary);
    background: rgba(15, 118, 110, 0.1);
}

.block-29 {
    margin: 0 1rem 3rem;
    border-radius: 22px;
    background: var(--gradient-secondary);
    box-shadow: 0 20px 45px rgba(16, 42, 67, 0.18);
}

.block-29 .btn-primary {
    background: #f07856;
}

.block-44 {
    border-top: 1px solid rgba(16, 42, 67, 0.08);
}

@keyframes landing-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes landing-image-in {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 0;
    }

    .hero-nav {
        width: calc(100% - 2rem);
        margin-top: 12px;
    }

    .hero__body {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .hero__image-column {
        min-height: 280px;
        margin: 0 1rem 1.5rem;
        border-radius: 20px;
    }

    .block-1,
    .block-20,
    .block-39 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Landing page redesign: product editorial */
:root {
    --primary: #f4a261;
    --secondary: #102a43;
    --primary-invert: #102a43;
    --gradient-primary: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    --gradient-secondary: linear-gradient(135deg, #102a43 0%, #173f5f 100%);
    --text-primary: #102a43;
    --text-secondary: #60758a;
    --elements-roundness: 4px;
    --transition-smooth: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    background: #f4f0e8;
    color: var(--text-primary);
}

.hero {
    min-height: 760px;
    overflow: hidden;
    background: #102a43;
    color: #f8f5ee;
    border: 0;
}

.hero::before {
    content: 'BUSINESS OPERATING SYSTEM';
    position: absolute;
    top: 155px;
    right: -72px;
    color: rgba(244, 162, 97, 0.18);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    transform: rotate(90deg);
}

.hero::after {
    width: 620px;
    height: 620px;
    right: -220px;
    bottom: -300px;
    border: 1px solid rgba(244, 162, 97, 0.35);
    box-shadow: 0 0 0 48px rgba(244, 162, 97, 0.04), 0 0 0 96px rgba(244, 162, 97, 0.025);
}

.fixed-nav-container {
    height: 112px;
    position: relative;
    z-index: 5;
}

.hero-nav {
    width: min(92%, 1240px);
    height: 72px;
    margin: 20px auto 0;
    padding: 0 1.25rem;
    border: 1px solid rgba(248, 245, 238, 0.19);
    border-radius: 4px;
    background: rgba(16, 42, 67, 0.7);
    box-shadow: 0 18px 36px rgba(3, 15, 27, 0.18);
    backdrop-filter: blur(14px);
}

.hero-nav__logo { height: 46px; max-width: 180px; object-fit: contain; }
.hero-nav__item { font-size: 0.9rem; }
.hero-nav__link { color: #f8f5ee; font-weight: 600; opacity: 0.72; transition: var(--transition-smooth); }
.hero-nav__link:hover, .hero-nav__link:focus { color: #f4a261; opacity: 1; }
.hero-nav .btn-primary { padding: 0.75rem 1.2rem; border-radius: 3px; background: #f4a261; color: #102a43; box-shadow: none; }
.hero-nav .btn-primary:hover { background: #f7bd83; }

.hero__content { position: relative; z-index: 1; }
.hero__body { padding-top: 6.5rem; padding-bottom: 9rem; animation: landing-rise 0.8s ease both; }
.hero__title { max-width: 760px; margin-bottom: 1.7rem; color: #f8f5ee; background: none; -webkit-text-fill-color: initial; font-size: clamp(2.8rem, 5.5vw, 6rem); line-height: 0.98; letter-spacing: -0.045em; }
.hero__paragraph { max-width: 590px; margin-left: 0; color: rgba(248, 245, 238, 0.7); font-size: 1.08rem; line-height: 1.85; }
.hero__btns-container .btn { padding: 1rem 1.55rem; border-radius: 3px; }
.hero__btns-container .btn-primary { background: #f4a261; color: #102a43; box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2); }
.hero__btns-container .btn-primary:hover { background: #f7bd83; }
.hero__image-column { border: 12px solid #f4a261; border-right: 0; border-radius: 0; box-shadow: -25px 35px 0 rgba(244, 162, 97, 0.12); animation: landing-image-in 0.9s 0.12s ease both; }

.block-1, .block-20, .block-39, .block-44 { background: #f4f0e8; }
.block-1, .block-20, .block-39 { padding-top: 6.5rem; padding-bottom: 6.5rem; }
.block__title, .block__title--big { color: #102a43; letter-spacing: -0.03em; }
.block__paragraph, .block__paragraph--big { color: #60758a; }
.card-1, .testimonial-card-1, .content-block { border: 1px solid rgba(16, 42, 67, 0.14); border-radius: 4px; background: #fffdf8; box-shadow: 8px 8px 0 rgba(16, 42, 67, 0.06); }
.card-1:hover, .testimonial-card-1:hover, .content-block:hover { border-color: #f4a261; box-shadow: 12px 14px 0 rgba(244, 162, 97, 0.16); transform: translateY(-6px); }
.card-1__title, .content-block__title { color: #102a43; }
.card-1__paragraph, .content-block__paragraph, .testimonial-card-1__paragraph { color: #60758a; }
.fr-icon { color: #102a43; background: #f4a261; border-radius: 3px; }
.testimonial-card-1__quote-symbol { background: #f4a261; color: #102a43; border-radius: 3px; }
.block-29 { margin: 0 1rem 3rem; border: 1px solid rgba(244, 162, 97, 0.35); border-radius: 4px; background: #102a43; box-shadow: 14px 14px 0 rgba(244, 162, 97, 0.18); }
.block-29 .btn-primary { background: #f4a261; color: #102a43; }
.block-44 { border-top: 1px solid rgba(16, 42, 67, 0.14); }

@media (max-width: 991.98px) {
    .hero { min-height: 0; }
    .hero::before { display: none; }
    .hero-nav { width: calc(100% - 1.5rem); margin-top: 12px; }
    .hero__body { padding-top: 4.3rem; padding-bottom: 5rem; }
    .hero__title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    .hero__image-column { min-height: 280px; margin: 0 1rem 1.5rem; border-width: 8px; border-right: 8px solid #f4a261; }
    .block-1, .block-20, .block-39 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* 2026 media system: local CSS visuals instead of legacy image and icon assets */
.neo-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #f8f5ee;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.neo-brand-mark__glyph {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #f4a261;
    background: #f4a261;
    color: #102a43;
    font-size: 1.3rem;
    line-height: 1;
    transform: rotate(45deg);
}

.neo-brand-mark__glyph::first-letter { transform: rotate(-45deg); }
.neo-brand-mark__name { max-width: 150px; }

.hero__image-column {
    background-image: none !important;
    background-color: #173f5f;
    position: relative;
    isolation: isolate;
}

.hero__image-column::before {
    content: '';
    position: absolute;
    inset: 13% 10% 13% 12%;
    border: 1px solid rgba(248, 245, 238, 0.24);
    background:
        linear-gradient(#f4a261, #f4a261) 8% 12% / 22% 4px no-repeat,
        linear-gradient(rgba(248, 245, 238, 0.82), rgba(248, 245, 238, 0.82)) 8% 26% / 80% 1px no-repeat,
        linear-gradient(rgba(248, 245, 238, 0.34), rgba(248, 245, 238, 0.34)) 8% 40% / 80% 1px no-repeat,
        linear-gradient(rgba(248, 245, 238, 0.34), rgba(248, 245, 238, 0.34)) 8% 54% / 80% 1px no-repeat,
        linear-gradient(135deg, transparent 45%, #f4a261 46% 49%, transparent 50%) 8% 34% / 82% 43% no-repeat,
        linear-gradient(135deg, transparent 45%, #6cc6b7 46% 49%, transparent 50%) 8% 34% / 82% 43% no-repeat,
        rgba(16, 42, 67, 0.72);
    box-shadow: 18px 18px 0 rgba(244, 162, 97, 0.2);
}

.hero__image-column::after {
    content: '';
    position: absolute;
    z-index: 2;
    width: 82px;
    height: 82px;
    right: 13%;
    bottom: 20%;
    border: 1px solid #f4a261;
    background: #102a43;
    box-shadow: inset 0 0 0 9px rgba(244, 162, 97, 0.08), 12px 12px 0 rgba(244, 162, 97, 0.18);
}

.block-1, .block-20, .block-39, .block-38, .block-2 {
    background-color: #f4f0e8;
    background-image: linear-gradient(rgba(16, 42, 67, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 42, 67, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
}

.block-2, .block-38 { padding-top: 6rem; padding-bottom: 6rem; }
.block-2__svg-shapes { display: none; }
.block-2-card { border: 1px solid rgba(16, 42, 67, 0.14); background: #fffdf8; box-shadow: 8px 8px 0 rgba(16, 42, 67, 0.06); }
.block-2__splide-btn { border: 1px solid #102a43; background: #f4a261; color: #102a43; }

.neo-icon {
    position: relative;
    overflow: hidden;
    border: 1px solid #102a43;
    background: #f4a261;
    color: #102a43;
}

.neo-icon::before, .neo-icon::after, .neo-icon__core::before, .neo-icon__core::after {
    content: '';
    position: absolute;
    display: block;
    border: 1.5px solid currentColor;
}

.neo-icon::before { width: 42%; height: 42%; top: 18%; left: 18%; }
.neo-icon::after { width: 42%; height: 42%; right: 18%; bottom: 18%; }
.neo-icon__core::before { width: 1px; height: 70%; top: 15%; left: 50%; }
.neo-icon__core::after { width: 70%; height: 1px; top: 50%; left: 15%; }
.neo-icon--1::before { border-radius: 50%; }
.neo-icon--1::after { border-radius: 50%; }
.neo-icon--2::before { transform: rotate(45deg); }
.neo-icon--2::after { transform: rotate(45deg); }
.neo-icon--3::before { border-radius: 50% 50% 0 50%; }
.neo-icon--3::after { border-radius: 0 50% 50% 50%; }
.neo-icon--4::before { width: 58%; height: 1px; top: 28%; left: 21%; border-width: 1.5px 0 0; }
.neo-icon--4::after { width: 58%; height: 1px; right: 21%; bottom: 28%; border-width: 1.5px 0 0; }
.neo-icon--5::before { width: 22%; height: 22%; top: 22%; left: 22%; box-shadow: 28px 0 0 -1px #f4a261, 0 28px 0 -1px #f4a261, 28px 28px 0 -1px #f4a261; }
.neo-icon--5::after { display: none; }
.neo-icon--5 .neo-icon__core::before, .neo-icon--5 .neo-icon__core::after { display: none; }

.neo-avatar {
    display: inline-grid;
    place-items: center;
    color: #f8f5ee;
    background: #102a43;
    border: 7px solid #f4a261;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0;
}

.block-20-person__rating { color: #e76f51; }
.block-20-person__rating i { display: none; }
.block-20-person__rating::before { content: '5.0 / 5'; font-weight: 800; letter-spacing: 0.08em; }
.block-29 { background-image: linear-gradient(90deg, rgba(244, 162, 97, 0.1) 1px, transparent 1px), linear-gradient(rgba(244, 162, 97, 0.1) 1px, transparent 1px); background-size: 28px 28px; }

@media (max-width: 991.98px) {
    .neo-brand-mark__name { display: none; }
    .hero__image-column::before { inset: 12% 8%; }
    .block-2, .block-38 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* Roll back the landing-only redesign layer */
:root {
    --primary: #1973fe;
    --secondary: #0a1f44;
    --primary-invert: #fff;
    --gradient-primary: linear-gradient(135deg, #1973fe 0%, #0ea5e9 100%);
    --gradient-secondary: linear-gradient(135deg, #0a1f44 0%, #1e3a5f 100%);
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --elements-roundness: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body { background: #f8fafc; color: var(--text-primary); }
.hero { min-height: initial; overflow: visible; background: linear-gradient(135deg, rgba(25, 115, 254, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%), linear-gradient(to bottom, #ffffff 0%, #f0f9ff 100%); border-bottom: 1px solid rgba(25, 115, 254, 0.1); }
.hero::before, .hero::after { display: none; }
.fixed-nav-container { height: var(--hero-nav-height); position: static; }
.hero-nav { width: 90%; height: var(--hero-nav-height); margin: 0 auto; padding: 0; border: 0; border-radius: 0; background: rgba(255, 255, 255, 0.7); box-shadow: none; }
.hero-nav__logo { height: 60px; max-width: none; }
.hero-nav__item { font-size: 1.1rem; }
.hero-nav__link { color: inherit; font-weight: inherit; opacity: 0.9; }
.hero-nav__link:hover, .hero-nav__link:focus { color: inherit; opacity: 1; }
.hero-nav .btn-primary { padding: 0.9rem 2.2rem; border-radius: 8px; background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.hero__body { padding-top: 2rem; padding-bottom: 3rem; animation: none; }
.hero__title { max-width: none; margin-bottom: 1rem; color: var(--text-primary); background: linear-gradient(135deg, var(--primary) 0%, var(--Blue) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 2rem; line-height: 1.2; letter-spacing: normal; }
.hero__paragraph { max-width: none; margin-left: auto; color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7; }
.hero__btns-container .btn { padding: 0.9rem 2.2rem; border-radius: 8px; }
.hero__btns-container .btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.hero__image-column { border: 0; border-radius: 0; box-shadow: none; background-color: transparent; animation: none; }
.hero__image-column::before, .hero__image-column::after { display: none; }
.block-1, .block-20, .block-39, .block-38, .block-2, .block-44 { background-color: initial; background-image: none; }
.block-1, .block-20, .block-39, .block-2, .block-38 { padding-top: var(--space-between-blocks-small-screens); padding-bottom: var(--space-between-blocks-small-screens); }
.block__title, .block__title--big { color: var(--text-primary); letter-spacing: normal; }
.block__paragraph, .block__paragraph--big { color: var(--text-secondary); }
.card-1, .testimonial-card-1, .content-block { border: 1px solid rgba(25, 115, 254, 0.1); border-radius: var(--elements-roundness); background: #fff; box-shadow: none; }
.card-1:hover, .testimonial-card-1:hover, .content-block:hover { border-color: rgba(25, 115, 254, 0.3); box-shadow: 0 20px 25px -5px rgba(25, 115, 254, 0.12); transform: translateY(-4px); }
.card-1__title, .content-block__title { color: var(--text-primary); }
.card-1__paragraph, .content-block__paragraph, .testimonial-card-1__paragraph { color: var(--text-secondary); }
.fr-icon { color: var(--primary); background: linear-gradient(135deg, rgba(25, 115, 254, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%); border: 0; border-radius: var(--elements-roundness); }
.testimonial-card-1__quote-symbol { background: var(--gradient-primary); color: #fff; border-radius: 50%; }
.block-2__svg-shapes { display: block; }
.block-2-card { border: 0; background: transparent; box-shadow: none; }
.block-2__splide-btn { border: 0; background: var(--primary); color: #fff; }
.neo-brand-mark, .neo-icon, .neo-avatar { all: unset; }
.block-20-person__rating { color: #f59e0b; }
.block-20-person__rating i { display: inline; }
.block-20-person__rating::before { content: none; }
.block-29 { margin: 0 auto; border: 0; border-radius: var(--elements-roundness); background: var(--gradient-primary); box-shadow: 0 20px 25px -5px rgba(25, 115, 254, 0.25); background-image: none; }
.block-29 .btn-primary { background: var(--gradient-primary); color: #fff; }
.block-44 { border-top: 0; }
@media (min-width: 992px) { .hero__body { padding-top: 4rem; padding-bottom: 7rem; } .hero__title { font-size: 4.1rem; line-height: 1.17; } .hero__paragraph { font-size: 1.4rem; width: 80%; } .block-1, .block-20, .block-39, .block-2, .block-38 { padding-top: var(--space-between-blocks); padding-bottom: var(--space-between-blocks); } }
