:root {
    --primary: #1a56db;
    --primary-dark: #1648b8;
    --primary-light: #e8f0fe;
    --primary-lighter: #f4f7fe;
    --secondary: #0b1120;
    --secondary-light: #151d2e;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(135deg, #1a56db 0%, #2563eb 100%);
    --gradient-secondary: linear-gradient(160deg, #0b1120 0%, #151d2e 100%);
    --gradient-hero: linear-gradient(160deg, #f8faff 0%, #eef4ff 40%, #f0faf5 100%);

    --text-primary: #0b1120;
    --text-secondary: #3d4f65;
    --text-muted: #8896a6;

    --border-color: #e5eaf0;
    --border-light: #f0f3f7;
    --bg-subtle: #f7f9fb;
    --bg-card: #ffffff;

    --elements-roundness: 10px;
    --card-roundness: 14px;

    --space-between-blocks: 4.5rem;
    --space-between-blocks-small-screens: 2.5rem;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.07);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.04);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #fff;
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 1140px !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-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: all 0.2s ease;
    box-shadow: none;
    letter-spacing: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
    line-height: 1.5;
}

.btn:hover,
.btn:focus {
    outline: none;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary);
    color: var(--primary-invert);
    box-shadow: 0 1px 2px rgba(26, 86, 219, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    background: white;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
}

.highlight {
    color: var(--primary);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.block__header {
    margin-bottom: 2rem;
}

.block__pre-title {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.block__title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.block__title--big {
    font-weight: 800;
    font-size: 1.65rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.25rem;
    }

    .block__title--big {
        font-size: 2.5rem;
        line-height: 1.15;
    }

    .block__header {
        margin-bottom: 3rem;
    }
}

.block__paragraph {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.block__paragraph--big {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (min-width: 992px) {
    .block__paragraph--big {
        font-size: 1.1rem;
        line-height: 1.75;
    }
}

/* ========================================
   ICONS
   ======================================== */
.fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 10px;
    color: var(--primary);
    background: var(--primary-light);
    margin-bottom: 1rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.fr-icon--medium {
    font-size: 1.3rem;
    height: 3rem;
    width: 3rem;
}

.fr-icon--large {
    font-size: 1.1rem;
    height: 3rem;
    width: 3rem;
    border-radius: 12px;
}

@media (min-width: 992px) {
    .fr-icon--large {
        height: 3.25rem;
        width: 3.25rem;
        font-size: 1.3rem;
    }
}

/* ========================================
   NAVBAR
   ======================================== */
.hero {
    --hero-nav-height: 72px;
    --block-background: transparent;
    --block-text-color: var(--text-primary);
    color: var(--block-text-color);
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--gradient-hero);
    box-shadow: none;
}

.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: 0.9rem;
}

@media (max-width: 991.98px) {
    .hero-nav > .nav > .hero-nav__item {
        margin: 0;
    }

    .hero-nav > .nav > .hero-nav__item:first-child {
        margin-right: auto;
        margin-left: 0;
    }

    .hero-nav > .nav > .hero-nav__item.hero-nav__toggle {
        margin-left: auto;
        margin-right: 0;
        flex-shrink: 0;
    }
}

@media (min-width: 992px) {
    .hero-nav__item {
        margin: 0 0.6rem;
    }
}

@media (min-width: 992px) {
    .nav--lg-side {
        flex-direction: row-reverse;
    }
}

.hero-nav__logo {
    height: 38px;
    margin-right: 0.75rem;
}

.hero-nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.4rem 0;
    transition: color 0.15s ease;
}

.hero-nav__link:focus,
.hero-nav__link:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Mobile Menu */
.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.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion: reduce) {
    .ft-menu {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
    }
}

.ft-menu .hero-nav__item {
    width: 100%;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

@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;
    animation-duration: 0.25s;
}

.ft-menu::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(11, 17, 32, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
}

@media (min-width: 992px) {
    .ft-menu {
        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%;
    max-width: 300px;
    height: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.3s transform cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 992px) {
    .ft-menu__slider {
        --block-background: transparent;
        width: auto;
        max-width: none;
        height: auto;
        background: 0 0;
        transform: none;
        display: flex;
        align-items: center;
        box-shadow: none;
    }
}

.ft-menu--js-show .ft-menu__slider {
    transform: translateX(0);
}

.ft-menu__close-btn {
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.75rem;
    margin: 1rem;
    transform: translateX(100%);
    transition: 0.3s transform cubic-bezier(0.4, 0, 0.2, 1);
}

@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: white;
}

@keyframes fadeIn {
    from { visibility: hidden; opacity: 0; }
    to { visibility: visible; opacity: 1; }
}
@keyframes fadeOut {
    from { visibility: visible; opacity: 1; }
    to { visibility: hidden; opacity: 0; }
}

.fixed-nav-container {
    height: var(--hero-nav-height);
}

/* Sticky Nav */
.hero-nav--is-sticky {
    --block-background: rgba(255, 255, 255, 0.96);
    color: var(--text-primary);
    background: var(--block-background);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    position: fixed !important;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
    padding: 0 1.25rem !important;
    height: 56px;
    transition: 0.2s height;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-name: slideInDown;
}

@media (min-width: 992px) {
    .hero-nav--is-sticky {
        height: 56px;
        padding: 0 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(--primary);
    color: var(--primary-invert);
}

@keyframes slideInDown {
    from { transform: translate3d(0, -100%, 0); visibility: visible; }
    to { transform: translate3d(0, 0, 0); }
}

.ft-menu__slider .hero-nav__item {
    font-size: 0.95rem;
    padding: 0 0.75rem;
}

@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;
    }
}

/* Dropdowns */
.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.875rem;
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s 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: 12px;
        border-top: none;
        box-shadow: var(--shadow-lg);
        background-color: #fff;
        z-index: 2;
        max-height: 0;
        padding: 1rem 1.25rem;
        overflow: visible;
        transition: 0.25s all;
        border: 1px solid var(--border-color);
    }
}

.dropdown--important {
    position: absolute;
    width: auto !important;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 12px;
    border-top: none;
    box-shadow: var(--shadow-lg);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 1rem;
    overflow: visible;
    transition: 0.25s all;
    border: 1px solid var(--border-color);
}

@media (min-width: 992px) {
    .dropdown--of-1-columns { width: 260px; }
    .dropdown--of-2-columns { width: 480px; }
    .dropdown--language-selector { width: 200px; }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 0.5rem;
    visibility: visible;
    opacity: 1;
    max-height: 9999px;
    padding-top: 0.5rem;
}

@media (min-width: 992px) {
    .hero-nav__item--show-dropdown .hero-nav__dropdown {
        margin-top: 0;
        padding: 1rem 1.25rem;
    }
}

.hero-nav__item-chevron {
    transition: 0.25s 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,
.hero-nav__dropdown::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 7px 6px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
}

@media (max-width: 991px) {
    .hero-nav__dropdown::before { display: none; }
}

.dropdown__title {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.dropdown__link {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    margin-bottom: 0.25rem;
    color: inherit;
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.dropdown__link:focus,
.dropdown__link:hover {
    color: inherit;
    text-decoration: none;
    background: var(--bg-subtle);
}

.dropdown__icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
    flex-shrink: 0;
}

.dropdown__item {
    max-width: 250px;
}

.dropdown__item-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
}

.dropdown__item-title::before { display: none; }

.dropdown__item-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
    margin-bottom: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero__row {
    height: 260px;
    position: static;
}

@media (max-width: 991.98px) {
    .hero__row.row {
        --bs-gutter-x: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        height: auto;
    }

    .hero__empty-column {
        display: none !important;
    }

    .hero__image-column {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        aspect-ratio: 16 / 10;
        border-radius: 14px !important;
        overflow: hidden;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

@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: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero__body {
        padding-top: 3.5rem;
        padding-bottom: 5rem;
    }
}

.hero__title {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: var(--text-primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero__paragraph {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (min-width: 576px) {
    .hero__title { font-size: 2.25rem; line-height: 1.12; }
    .hero__paragraph { width: 85%; }
}

@media (min-width: 768px) {
    .hero__title { font-size: 2.5rem; }
}

@media (min-width: 992px) {
    .hero__title { font-size: 3rem; line-height: 1.1; }
    .hero__paragraph { font-size: 1.05rem; width: 85%; }
}

@media (min-width: 1200px) {
    .hero__title { font-size: 3.25rem; }
}

.hero__btns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* ========================================
   FEATURES (Block 1)
   ======================================== */
.block-1 {
    --block-background: #fff;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    padding-bottom: 0 !important;
}

.card-1 {
    height: 100%;
    padding: 1.5rem;
    border-radius: var(--card-roundness);
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    transition: all 0.25s ease;
}

.card-1:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--border-color);
    background: #fff;
}

.card-1:hover .fr-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.card-1__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.card-1__paragraph {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.mb-2-1rem {
    margin-bottom: 1.25rem;
}

/* ========================================
   INDUSTRIES (Block 2) — carousel
   ======================================== */
.block-2 {
    --block-background: var(--bg-subtle);
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    position: relative;
    overflow: hidden;
}

.block-2__intro {
    z-index: 2;
}

.block-2-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--card-roundness);
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    min-width: 0;
}

@media (min-width: 992px) {
    .block-2-card {
        padding: 1.5rem;
    }
}

.block-2-card__body {
    flex: 1;
    min-width: 0;
}

.block-2-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

@media (min-width: 992px) {
    .block-2-card__title {
        font-size: 1.05rem;
    }
}

.block-2-card__paragraph {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.block-2-card__title::before { display: none; }

.block-2__splide {
    position: relative;
    margin-top: 0.5rem;
}

@media (min-width: 992px) {
    .block-2__splide {
        margin-top: 0;
        min-height: 420px;
    }
}

.block-2__splide .splide__slide {
    height: auto;
}

.block-2__splide .splide__slide.is-active .block-2-card {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-sm);
}

.block-2__splide .splide__slide.is-active .fr-icon {
    background: var(--primary);
    color: #fff;
}

.splide__arrows { display: none; }

.block-2__custom-arrows.splide__arrows {
    display: block;
}

.block-2__splide::before,
.block-2__splide::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2.5rem;
    z-index: 2;
    pointer-events: none;
}

.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%);
}

@media (min-width: 992px) {
    .block-2__splide::before,
    .block-2__splide::after {
        height: 3.5rem;
    }

    .block-2 .splide__track {
        overflow: visible !important;
    }
}

.block-2__splide-btn {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background: var(--secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    transform: rotate(90deg);
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
    .block-2__splide-btn {
        right: 18%;
        left: auto;
        bottom: 1.5rem;
    }
}

.block-2__splide-btn:focus,
.block-2__splide-btn:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .block-2 #block-2__container.row {
        --bs-gutter-x: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .block-2__splide {
        padding-bottom: 3rem;
    }

    .block-2__splide-btn {
        transform: none;
        right: 50%;
        left: auto;
        margin-right: -20px;
    }
}

/* ========================================
   STATISTICS (Block 38)
   ======================================== */
.block-38 {
    --block-background: #fff;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.stats {
    background: var(--gradient-secondary);
    color: var(--secondary-invert);
    border-radius: var(--card-roundness);
    --stats-li-border-color: rgba(255, 255, 255, 0.08);
    padding: 2rem 1.25rem !important;
}

@media (min-width: 992px) {
    .stats {
        padding: 3rem 2rem !important;
    }
}

.stats__li {
    border-bottom: 1px solid var(--stats-li-border-color);
    padding: 1.25rem 0 !important;
    border-right: 1px solid var(--stats-li-border-color);
}

.stats__li:last-child { border-bottom: none; }
.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.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1.2;
}

.stats__text {
    width: 90%;
    margin: auto;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0.25rem;
    font-weight: 400;
}

@media (min-width: 992px) {
    .stats__text { width: 100%; }
}

/* ========================================
   TESTIMONIALS (Block 20)
   ======================================== */
.block-20 {
    --block-background: var(--bg-subtle);
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.testimonial-card-1 {
    border-radius: var(--card-roundness);
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    margin-bottom: 5rem;
    transition: all 0.2s ease;
}

.testimonial-card-1:hover {
    box-shadow: var(--shadow-card);
}

@media (min-width: 992px) {
    .testimonial-card-1 {
        height: 100%;
        margin-bottom: 0;
    }
}

.testimonial-card-1__paragraph {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-card-1__quote-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    border-radius: 50%;
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: var(--shadow-sm);
}

.block-20-person {
    text-align: center;
    transform: translateY(-4rem);
    margin-bottom: -2.5rem;
}

.block-20-person__avatar {
    padding: 3px;
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    object-fit: cover;
}

.block-20-person__rating {
    font-size: 0.65rem;
    color: #e5a100;
    letter-spacing: 1px;
}

.block-20-person__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.block-20-person__info {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
}

@media (min-width: 1400px) {
    #block__container {
        max-width: 90%;
    }
}

/* ========================================
   CTA (Block 29)
   ======================================== */
.block-29 {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1.5rem;
}

.block-29::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.block-29::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -4%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

@media (min-width: 992px) {
    .block-29 {
        border-radius: var(--card-roundness);
        padding: 3rem 2.5rem;
    }
}

.block-29__title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.block-29__paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.block-29__paragraph,
.block-29__title {
    text-align: center;
}

@media (min-width: 992px) {
    .block-29__title { font-size: 1.75rem; }
    .block-29__paragraph,
    .block-29__title { text-align: initial; }
    .block-29__paragraph { width: 90%; }
}

.block-29 .btn-secondary,
.block-29 .btn-secondary:hover,
.block-29 .btn-secondary:focus {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 700;
}

.block-29 .btn-secondary:hover {
    box-shadow: var(--shadow-md);
}

/* ========================================
   FAQ (Block 39)
   ======================================== */
.block-39 {
    --block-background: #fff;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.content-block {
    text-align: initial;
    margin: 0;
    padding: 1.25rem 1.5rem;
    border-radius: var(--card-roundness);
    border: 1px solid var(--border-light);
    background: var(--bg-subtle);
    transition: all 0.2s ease;
}

.content-block:hover {
    border-color: var(--border-color);
    background: #fff;
    box-shadow: var(--shadow-xs);
}

@media (min-width: 992px) {
    .content-block { width: 100%; }
}

.content-block__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

@media (min-width: 992px) {
    .content-block__title { font-size: 1rem; }
}

.content-block__paragraph {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ========================================
   FOOTER (Block 44)
   ======================================== */
.block-44 {
    --block-background: var(--bg-subtle);
    --block-text-color: var(--text-secondary);
    background: var(--block-background);
    color: var(--block-text-color);
    font-size: 0.875rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .block-44 { text-align: initial; }
}

.block-44__logo-container {
    width: 100%;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .block-44__logo-container {
        width: auto;
        flex-grow: 1;
        margin-bottom: 0;
    }
}

.block-44__logo { height: 28px; }

.block-44__list {
    display: flex;
    flex-wrap: wrap;
}

.block-44__li-1 { margin: 0.4rem; }

@media (min-width: 992px) {
    .block-44__li-1 { margin: 0; }
    .block-44__li-1::after { width: 1.5rem; }
    .block-44__li-1:last-child::after { width: 0; }
}

.block-44__link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.block-44__link:focus,
.block-44__link:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    background: var(--primary-lighter);
    text-decoration: none;
}

.block-44__divider {
    margin: 1rem 0;
    color: var(--border-light);
    opacity: 1;
}

.block-44__extra-links {
    justify-content: center;
    gap: 0.4rem;
}

@media (min-width: 768px) {
    .block-44__extra-links { justify-content: flex-start; }
}

.block-44__inner {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.block-44__bottom {
    margin-top: 1.25rem;
}

.block-44__copyrights {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.8rem;
    margin: 0;
}

.block-44__legal-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.block-44__legal-nav::-webkit-scrollbar {
    display: none;
}

.block-44__legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem 0;
}

@media (min-width: 768px) {
    .block-44__legal-links {
        flex-wrap: nowrap;
        justify-content: center;
        white-space: nowrap;
    }

    .block-44__legal-item {
        flex-shrink: 0;
    }
}

.block-44__legal-item {
    display: inline-flex;
    align-items: center;
}

.block-44__legal-item:not(:last-child)::after {
    content: '·';
    margin: 0 0.65rem;
    color: var(--text-muted);
    opacity: 0.5;
    font-weight: 700;
    pointer-events: none;
}

.block-44__legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.block-44__legal-link:hover,
.block-44__legal-link:focus {
    color: var(--primary);
    text-decoration: none;
}

/* ========================================
   CONTACT FORM (Block 27)
   ======================================== */
.block-27 {
    --space-between-blocks: 1rem;
    --elements-roundness: 10px;
    --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: 280px; }

@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: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.contact-form__paragraph {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-form { margin: auto; }

.hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 0;
    border-top: 1px solid var(--border-light);
    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: var(--text-muted);
    font-size: 0.8rem;
}

.contact-form__input {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: var(--elements-roundness);
    border: 1.5px solid var(--border-color);
    background: #fff;
    width: 100%;
    margin-bottom: 0.6rem;
    transition: all 0.15s ease;
}

textarea.contact-form__input {
    height: 120px;
    resize: none;
}

.contact-form__input:focus {
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
}

.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;
}

@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 white;
    width: 1.1rem;
    height: 1.1rem;
    animation: spin 0.5s linear infinite;
    z-index: 2;
}

.h-100 { height: 100% !important; }

/* ========================================
   BLOG / ARTICLES
   ======================================== */
.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: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.article-block__info {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.article-block__author {
    color: inherit;
    position: relative;
    padding-right: 12px;
    margin-right: 12px;
}

.article-block__author:focus,
.article-block__author:hover {
    color: var(--primary);
    text-decoration: underline;
}

.article-block__author::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 90%;
    margin: auto;
    width: 1.5px;
    background: var(--border-color);
}

.article-block__header-img {
    width: 100%;
    border-radius: var(--card-roundness);
    box-shadow: var(--shadow-sm);
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    font-weight: 700;
    line-height: 1.35;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.article-container__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.02em;
}

.article {
    padding: 0 1rem;
}

.article p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .article {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.article img,
.article video {
    width: 100%;
    border-radius: 8px;
}

pre {
    background: var(--secondary);
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

ol, ul { line-height: 1.85; }

blockquote {
    margin: 0 0 1rem;
    padding: 1rem 1rem 0.25rem;
    background: var(--bg-subtle);
    font-style: italic;
    margin-top: 1.25rem;
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    color: var(--text-secondary);
}

/* ========================================
   MISC
   ======================================== */
.block-1-testimonial {
    background: var(--primary-lighter);
    padding: 1.5rem;
    border-radius: var(--card-roundness);
}

.block-1-testimonial__paragraph {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.block-1-person { font-size: 0.8rem; }

.block-1-person__link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.block-1-person__link:focus,
.block-1-person__link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.block-1-person__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: var(--shadow-xs);
}

/* Section divider — seamless transition between features and industries */
.block-1 + .block-2 {
    margin-top: 0;
}
