/* style.css */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    overflow-x: hidden;
    background: #fff;
}


a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.b-links {
    text-decoration: none;
    cursor: pointer;
    width: max-content;

}

.b-links:hover {
    text-decoration: none;
    color: unset;
    border-bottom: unset;
}

/* //////////////////////// content-wrapper //////////////////////// */
.content-wrapper {
    padding-inline: 16px;
}

@media screen and (min-width: 768px) {
    .content-wrapper {
        padding-inline: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .content-wrapper {
        padding-inline: 40px;
    }
}

@media screen and (min-width: 1440px) {
    .content-wrapper {
        max-width: 1400px;
        margin-inline: auto;
        padding-inline: 0;
    }
}

/* //////////////////////// end content-wrapper //////////////////////// */



.hero-section {
    padding: 72px 0 56px;
    overflow: hidden;
    background: url("/static/images/europe-home/hero_BG.svg") center/cover no-repeat;
    background-color: #fff;
}

@media (min-width: 1024px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1.05fr 1.35fr;
        gap: 60px;
        align-items: center;
    }
}

.hero-title {
    position: relative;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-size: clamp(30px, 4.3vw, 56px);
    max-width: 17ch;
}

.hero-star {
    position: absolute;
    width: auto;
    height: 86px;
    right: -40px;
    top: 10px;
    pointer-events: none;
}

.hero-visuals {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-ui {
    width: 140%;
    max-width: none;
    height: auto;
    display: block;
    transform: translateX(8%);
}

.hero-subtitle {
    margin-top: 14px;
    max-width: 60ch;
    color: #272624;
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.btn {
    font-family: 'Open Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.btn-primary {
    background: #218838;
    color: #fff;
    box-shadow: 0 10px 24px rgba(89, 194, 122, .28);
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary:hover {
    background: #19692C;
    /* transform: translateY(-1px); */
}

.btn-secondary {
    background-color: #0056d2;
    color: white;
    width: fit-content;
    border: 1px solid #0251E2;
    box-shadow: 0 0 10px rgba(0, 83, 226, .60);
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-secondary:hover {
    background: #004CA3;
    /* transform: translateY(-1px); */
}

/* trust row like in screenshot */
.trust-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: center;
    margin-top: 42px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.trust-badges::-webkit-scrollbar {
    height: 6px;
}

.trust-badges::-webkit-scrollbar-thumb {
    background: rgba(15, 26, 43, .12);
    border-radius: 999px;
}

.hero-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    backdrop-filter: blur(6px);
}

.hero-badge-logo {
    width: auto;
    height: 40px;
    display: block;
}

.stars {
    color: #f5b301;
    letter-spacing: 1px;
    font-size: 13px;
}

.rating {
    font-size: 13px;
    color: #5c6a7d;
    font-weight: 600;
}


.hero-visuals {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-ui {
    height: auto;
    display: block;
}



@media (min-width: 1024px) {

    .hero-content {
        grid-template-columns: 1.05fr 1.25fr;
        gap: 60px;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-badge {
        padding: 6px 12px;
    }
}

@media (max-width: 1023px) {
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 420px;
    }

    .btn+.btn {
        margin-top: 12px;
    }
}

@media (max-width: 1023px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: center;
    }

    .hero-visuals {
        order: -1;
        justify-content: center;
    }

    .hero-ui {
        width: 100%;
        max-width: 820px;
        transform: none;
    }
}

@media (max-width: 860px) {
    .trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 42px;
        align-items: center;
        justify-items: center;
    }
}



@media (max-width: 520px) {

    .hero-subtitle {
        margin-top: 14px;
        max-width: 45ch;
        color: #272624;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-star {
        height: 46px;
        right: -28px;
        top: 1px;
    }

}


@media (max-width: 480px) {
    .hero-star {
        width: 34px;
        height: 34px;
        right: -10px;
        top: 8px;
    }
}

@media (max-width: 480px) {


    .cta-buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}



/* logos slide */

.logo-section-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 40px 0;
    color: #1a1a1a;
}


.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 40px;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-track:hover {
    animation-play-state: paused;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.carousel-overlay-left {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.carousel-overlay-right {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1920px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-item {
        width: 140px;
        height: 70px;
    }

    .logo-placeholder {
        width: 100px;
        height: 50px;
    }

    .logo-track {
        gap: 40px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1940px);
        }
    }
}

@media (max-width: 520px) {
    .logo-section-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 120px;
        height: 60px;
    }

    .logo-placeholder {
        width: 80px;
        height: 40px;
    }

    .logo-track {
        gap: 30px;
    }

    .carousel-overlay {
        width: 60px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1620px);
        }
    }
}


/* cards */

.cards-section {
    margin-top: 160px;
}


.card-tag-link {
    text-decoration: none;
    align-items: center;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 16px;
    transition: opacity 0.2s;
    z-index: 4;

}

.feature-card .card-tag-link {
    background-color: rgba(255, 255, 255, 0.8);
    color: #0053E2;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.feature-card_second .card-tag-link {
    background-color: rgba(255, 255, 255, 0.8);
    color: #48146C;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.feature-card_third .card-tag-link {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}


.cards-section-title {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    padding-bottom: 12px;
    margin: auto;
    text-align: center;
}

.cards-section-sub_title {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #272624;
    font-weight: normal;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    width: 100%;
    max-width: 440px;
    height: 510px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    background: #0053E2;
}

.feature-card_second {
    width: 100%;
    max-width: 440px;
    height: 510px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    background: #E1D2FF;
}

.feature-card_third {
    width: 100%;
    max-width: 440px;
    height: 510px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    background: #F6F6F6;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url('/static/images/europe-home/BG_line.svg');
}

.card-bg_second {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url('/static/images/europe-home/BG_apps.png');
}

.card-bg_third {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.card-title {
    font-size: 28px;
    font-weight: 600;
    margin: 20px 0;
    color: white;
}

.card-title_second {
    font-size: 28px;
    font-weight: 600;
    margin: 20px 0;
    color: #48156C;
}

.card-title_third {
    font-size: 28px;
    font-weight: 600;
    margin: 20px 0;
    color: #000000;
}

.card-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;

}

.card-button:hover {
    transform: translateX(5px);
    background: #2563eb;
}

/* Main Image */
.main-image {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.device-placeholder {
    width: 100%;
    height: auto;
    pointer-events: none;
}


@media (max-width: 960px) {
    .cards-section {
        margin-top: 100px;
    }
}


@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .card-content {
        padding: 30px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-title_second {
        font-size: 24px;
    }

    .card-title_third {
        font-size: 24px;
    }

}

@media (max-width: 520px) {
    .cards-section-title {
        font-size: 18px;
        line-height: 1.5;
    }

    .cards-section-sub_title {
        font-size: 16px;
    }

    .card-title_second,
    .card-title,
    .card-title_third {
        font-size: 18px;
    }

    .cards-section-sub_title {
        padding-bottom: 38px;
    }

    .cards-section {
        margin-top: 80px;
    }

    .logo-carousel {
        padding: 0 0;
    }

}


@media (max-width: 480px) {

    .device-placeholder {
        width: 80%;
        height: auto;
    }

    .main-image {
        text-align: center;
    }

    .feature-card .main-image {
        right: -12%;
        text-align: right;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card,
    .feature-card_second,
    .feature-card_third {
        height: 400px;
    }

    .card-content {
        padding: 25px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

}


.slide {
    width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
}


@media (max-width: 1024px) {
    .slide picture {
        display: none !important;
    }

    .slide {
        gap: 0;
        justify-content: center;
    }

    .slide-content {
        max-width: 600px;
        width: 100%;
    }

    .slider-section {
        min-height: auto;
        padding: 40px 0;
    }
}

@media (max-width: 600px) {
    .slide {
        padding: 0 16px;
    }

    .slide-content {
        padding: 24px;
        border-radius: 20px;
    }
}






/* card block */

.card-value {
    margin-top: 160px;
}


.header-text {
    text-align: center;
    max-width: 100%;
    padding-bottom: 40px;
    margin: auto;
}

.header-text h1 {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.card {
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.card-content {
    z-index: 2;
}

.card-sub_txt {
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
}

.card-subtxt {
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
}

.card-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 500px;
    color: white;
}

.card-txt {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 500px;
    color: #272624;
}

.card-arrow {
    margin-left: 6px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag-link,
.card-tag {
    text-decoration: none;
    /* display: inline-flex; */
    align-items: center;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 16px;
    transition: opacity 0.2s;
    /* font-weight: 500; */
}


.tag-link:hover {
    opacity: 0.8;
}

.tag-link span {
    /* margin-left: 6px; */
    font-size: 16px;
    margin-right: 6px;
    color: #272624;
}

.card-image {
    z-index: 2;
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
}

.card-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card.card-blue {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #0055ff 0%, #2b75ff 100%);
    color: white;
    flex-direction: row;
    align-items: flex-start;
}

.card.card-blue {
    position: relative;
    overflow: hidden;
    /* чтобы ничего не выступало за границы */
    background: linear-gradient(135deg, #0055ff 0%, #2b7bf8 100%);
    color: #fff;
}



.card-blue .card-content {
    flex: 1;
    min-width: 300px;
}

.card-blue .card-image {
    flex: 1;
}

.card-blue .tag-link {
    background-color: rgba(255, 255, 255, 0.8);
    color: #0053E2;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.card-blue .card-tag {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}


.card.card-gray {
    background-color: #f3f4f6;
    color: #1f2937;
}

.card-gray .tag-link {
    /* background-color: #fff; */
    border: 1.5px solid #000000;
    color: #0053E2;
}

.card.card-green {
    background-color: #DCF7A1;
    color: #000000;
}

.card-green .tag-link {
    /* background-color: rgba(255, 255, 255, 0.6); */
    border: 1.5px solid #000000;
    color: #0053E2;
}

.tag-link--active {
    color: #0053E2;
}


a.tag-link--active,
a.tag-link--active:hover,
a.tag-link--active:focus {
    color: #0053E2;
    cursor: pointer;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

@media (max-width: 960px) {

    .card-value {
        margin-top: 100px;
    }
}


@media (max-width: 900px) {
    .card.card-blue {
        flex-direction: column;
    }

    .card-blue .card-image {
        width: 100%;
        margin-top: 30px;
    }
}


@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .header-text h1 {
        font-size: 18px;
    }

    .card-value {
        margin-top: 80px;
    }

    .card-sub_txt,
    .card-subtxt {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .card-text,
    .card-txt {
        font-size: 16px;
    }

    .tag-link,
    .card-tag {
        font-size: 14px;
    }

    .tag-link span {
        font-size: 14px;
    }

    .tags-wrapper {
        margin-bottom: 10px;
    }
}



/* AI */


/* --- Основной блок --- */
.ai-section {
    margin-top: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

/* --- Заголовок --- */
.ai-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-title {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ai-badge {
    background: linear-gradient(90deg, #a855f7, #6366f1);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    line-height: 1;
}

.ai-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #272624;
    max-width: 600px;
    margin: 0 auto;
}

.ai-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.ai-features-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ai-feature-item {
    position: relative;
    padding-left: 32px;
}

.ai-feature-head {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    position: relative;
}

.ai-feature-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 8px;
    width: fit-content;
    background: linear-gradient(90deg,
            #d946ef 0%,
            #8b5cf6 50%,
            #3b82f6 100%);
    box-shadow: 0 6px 16px rgba(169, 91, 206, 0.15);
    user-select: none;
    background: linear-gradient(90deg,
            #c026d3 0%,
            #7c3aed 50%,
            #2563eb 100%);
}

.ai-feature-btn:hover {
    background: linear-gradient(90deg,
            #d946ef 0%,
            #8b5cf6 50%,
            #3b82f6 100%);
    color: white;
}

.ai-bullet {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}


.ai-bullet::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #a855f7;
    border-radius: 50%;
}

.ai-feature-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

.ai-feature-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #272624;
    margin-top: 5px;
}

.ai-visual-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.ai-image {
    max-width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 992px) {
    .ai-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .ai-features-list,
    .ai-visual-wrapper {
        min-width: auto;
    }

    .ai-visual-wrapper {
        order: -1;
    }

    .ai-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 960px) {
    .ai-section {
        margin-top: 100px;
    }
}



@media (max-width: 576px) {
    .ai-title {
        font-size: 26px;
    }

    .ai-subtitle {
        font-size: 16px;
    }

    .ai-feature-title {
        font-size: 16px;
    }

    .ai-feature-desc {
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .ai-section {
        margin-top: 80px;
    }

    .ai-title {
        font-size: 18px;
    }
}



/*    Demo    */

.try-demo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 160px;
}


.try-demo-card {
    display: flex;
    background-color: #a3e635;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-height: 384px;
}

.try-demo-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    max-width: 55%;
}

.try-demo-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.try-demo-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #272624;
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 450px;
}

.try-demo-btn {
    display: inline-block;
    background-color: #0056d2;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 8px;
    width: fit-content;
    border: 1px solid #0251E2;
    box-shadow: 0 0 10px rgba(0, 83, 226, .60);

    transition: transform .15s ease, box-shadow .15s ease;
}

.try-demo-btn:hover {
    background-color: #0044a5;
}

.try-demo-visual {
    position: absolute;
    right: -28px;
    top: 0;
    bottom: 0;
    width: 45%;
    height: auto;
}

.try-demo-img {
    width: 96%;
    height: auto;
}


@media (max-width: 1270px) {
    .try-demo-visual {
        position: absolute;
        right: -30px;
        top: 0;
        bottom: 0;
        width: 49%;
        height: 100%;
    }
}


@media (max-width: 992px) {
    .try-demo-title {
        font-size: 26px;
    }

    .try-demo-visual {
        display: none;
    }

    .try-demo-content {
        max-width: 100%;
        padding: 40px;
        margin: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .try-demo-text {
        max-width: 100%;
    }

    .try-demo-btn {
        text-align: center;
        margin: auto;
    }
}

@media (max-width: 960px) {

    .try-demo-section {
        margin-top: 100px;
    }
}


@media (max-width: 768px) {
    .try-demo-card {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .try-demo-content {
        max-width: 100%;
        padding: 40px 30px;
        order: 1;
    }

    .try-demo-visual {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
    }

    .try-demo-img {
        border-radius: 0;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }
}

@media (max-width: 520px) {
    .try-demo-title {
        font-size: 18px;
    }

    .try-demo-text {
        font-size: 14px;
    }

    .try-demo-content {
        padding: 30px 20px;
    }

    .try-demo-section {
        margin-top: 80px;
    }

}






/* --- Секция --- */
.start-growth-section {
    margin-top: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #EEF2F6;
    padding: 48px 0;
}

.start-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.start-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.start-main-title {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    max-width: 100%;
    text-align: center;
    margin: auto;
}


.start-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.start-growth-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px;
    gap: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.start-card-green {
    background-color: #DCF7A1;
    background-image: url("/static/images/europe-home/BG-growing-teams.png");
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.start-card-reverse {
    flex-direction: row-reverse;
}


.start-card-content {
    flex: 1;
    max-width: 600px;
}

.start-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.start-card-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 20px;
}

.start-card-desc {
    font-size: 16px;
    color: #272624;
    margin-bottom: 24px;
    line-height: 1.6;
}

.start-card-list {
    list-style: none;
    padding: 0;
}

.start-card-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #272624;
}


.start-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 10px;
}

.start-card-list-green li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: #FEBD1F;
    border-radius: 10px;
}

.start-card-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-img {
    width: 100%;
    height: auto;
    display: block;

}


@media (max-width: 992px) {
    .start-growth-card {
        flex-direction: column !important;
        padding: 40px;
        gap: 40px;
        text-align: left;
    }

    .start-card-reverse {
        flex-direction: column !important;
    }

    .start-card-content,
    .start-card-visual {
        width: 100%;
        max-width: 100%;
    }

    .start-card-visual {
        order: 2;

    }

    .start-card-content {
        order: 1;
    }

    .start-img {
        max-width: 100%;
    }
}

@media (max-width: 960px) {
    .start-growth-section {
        margin-top: 100px;

    }

    .start-main-title {
        max-width: 100%;
    }
}


@media (max-width: 576px) {

    .start-growth-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

}

@media (max-width: 520px) {
    .start-growth-section {
        margin-top: 80px;
    }

    .start-card-title {
        font-size: 18px;
    }

    .start-main-title {
        font-size: 18px;
        line-height: 1.5;
        max-width: 100%;
    }

    .start-card-subtitle {
        font-size: 16px;
    }

    .start-card-desc {
        font-size: 14px;
    }

    .start-card-list li {
        font-size: 14px;
    }

    .start-section-header {
        text-align: center;
        margin-bottom: 40px;
    }
}






/* //////// */


.industries {
    margin-top: 160px;
}

.industries-title {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 50px;
    text-align: center;
}

.industries-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    /* важно: на десктопе высота может отличаться */
    align-items: stretch;
}

.industries-card {
    background: #EEF2F6;
    padding: 28px 24px 34px;
    border-radius: 24px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease, filter .18s ease;
    outline: none;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.industries-card:hover {
    transform: translateY(-2px);
    background: #0053E2;
    color: white;
}


.industries-card__top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
    min-height: 24px;
}

.industries-icon {
    color: #001D60;
    flex: 0 0 auto;
}

.industries-card__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    color: #000000;
}

.industries-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.industries-chip {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1;
    padding: 10px 10px;
    border-radius: 8px;
    background: white;
    border: 1px solid white;
    color: #0053E2;
    white-space: nowrap;
    text-decoration: none;
}

.industries-chip a {
    text-decoration: none;
    color: #0053E2;
}

.industries-card a {
    text-decoration: none;
}

.industries-card a:hover {
    text-decoration: none;
}

.industries-cards .industries-chip a {
    text-decoration: none;
}

.industries-chip a:hover,
.industries-chip a:focus {
    text-decoration: none;
}


.industries-chip:hover {
    box-shadow: 6px 10px 10px rgba(0, 0, 0, .25);
}

.industries-chip a,
.industries-chip a:link,
.industries-chip a:visited,
.industries-chip a:hover,
.industries-chip a:active,
.industries-chip a:focus,
.industries-chip a:focus-visible {
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.industries-chip a {
    border-bottom: none !important;
}

.industries-card.is-active {
    background: #0053E2;
    border-color: rgba(255, 255, 255, .18);
}


.industries-card.is-active .industries-icon,
.industries-card:hover .industries-icon,
.industries-card:focus-visible .industries-icon {
    color: #fff;
}

.industries-card.is-active .industries-card__title {
    color: #fff;
}


.industries-card:hover .industries-card__title,
.industries-card:focus .industries-card__title,
.industries-card:focus-visible .industries-card__title {
    color: #fff;
}

.industries-card.is-active .industries-chip {
    background: white;
    border-color: white;
    color: #0053E2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}


.industries-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(11, 99, 255, .35);
    background: #0053E2;
}

@media (max-width: 1114px) {
    .industries-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }


    .industries-card {
        min-height: 230px;
        height: 100%;
    }
}

@media (max-width: 980px) {
    .industries {
        margin-top: 100px;
    }

}


@media (max-width: 740px) {
    .industries-cards {
        grid-template-columns: 1fr;
    }

    .industries-card {
        min-height: unset;
    }
}


@media (max-width: 520px) {
    .industries {
        margin-top: 80px;
    }

    .industries-card__title {
        font-size: 16px;
    }

    .industries-title {
        font-size: 18px;
        line-height: 1.5;
        margin: 0 0 40px;
    }

}





/* /////// */
.title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #0f172a;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Эффект затемнения остальных карточек при наведении */
.categories-grid:hover .category-card {
    filter: brightness(0.65) saturate(0.75);
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.categories-grid .category-card:hover {
    filter: none !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25) !important;
}

.category-card.active,
.category-card:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: transparent;
}

.category-card.active .title,
.category-card:hover .title,
.category-card.active .subtitle,
.category-card:hover .subtitle {
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.title {
    font-size: 1.38rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e40af;
    transition: all 0.3s;
}

.subtitle {
    font-size: 0.94rem;
    line-height: 1.45;
    color: #64748b;
    transition: all 0.3s;
}

.items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-top: 18px;
    font-size: 0.92rem;
}

.item {
    opacity: 0.9;
}

/* Адаптив */
@media (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .items {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}


.categories-grid {
    align-items: stretch;
}

.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-wrapper {
    flex: 1;
}



/* cta */

.cta {
    margin-top: 160px;
}

.cta-wrapper {
    background-color: #0055D4;
    border-radius: 16px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 85, 212, 0.2);
}

/* Блок с текстом */
.cta-content {
    max-width: 100%;
    margin-right: 20px;
}

.cta-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    color: white;
}

.cta-text--sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #FFB300;
}


.cta-button {
    display: inline-block;
    background-color: #FFB300;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 40px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid #FEBD1F;
    box-shadow: 0 0 10px rgba(254, 189, 31, 0.60);
    transition: background-color 0.3s ease, transform 0.2s ease;
}


.cta-button:hover {
    background-color: #F8A100;
    border: 1px solid #FEBD1F;
    color: #000000;
}

.cta-button:active {
    transform: scale(0.98);
}

.cta {
    margin-top: 160px;
}

@media (max-width: 900px) {
    .cta {
        margin-top: 100px;
    }
}

@media (max-width: 900px) {
    .cta-wrapper {
        padding: 30px 40px;
    }
}


@media (max-width: 600px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .cta-content {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-text--sub {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 520px) {
    .cta {
        margin-top: 80px;
    }
}








/* --- Основная сетка --- */
.results {
    margin-top: 100px;
    background: #EEF2F6;
}

.results-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
    padding: 64px 0 80px 0;
}

/* desktop placements */
.results-text-block {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    align-self: start;
    margin-bottom: 0;
}

.results-main_text {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
}

.results-sub_txt {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
}

.results-subtext {
    font-family: 'Open Sans', sans-serif;
    color: #272624;
    max-width: 75%;
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.5;
}

.results-header-right {
    grid-column: 3 / 5;
    grid-row: 1;
    align-self: start;
    padding-bottom: 0;
    margin-bottom: 0;
}

.results-card__value {
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    font-size: 50px;
    font-weight: 700;
    text-align: right;
    line-height: 1;
    margin-bottom: 10px;
}

.value-card--blue {
    color: #FFFFFF;
}

.results-card__desc {
    font-size: 16px;
    text-align: right;
    color: #272624;
}

.desc-card--blue {
    font-size: 16px;
    text-align: right;
    color: #fff;
}

.pos-top-1 {
    grid-column: 3 / 4;
    grid-row: 2;
}

.pos-top-2 {
    grid-column: 4 / 5;
    grid-row: 2;
}

.pos-bottom-1 {
    grid-column: 1 / 2;
}

.pos-bottom-2 {
    grid-column: 2 / 3;
}

.pos-bottom-3 {
    grid-column: 3 / 4;
}

.pos-bottom-4 {
    grid-column: 4 / 5;
}


.results svg {
    width: 24px;
    height: 24px;
}


.results-card {
    background: #fff;
    border-radius: 16px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
}

.results-card--green {
    background-color: #DCF7A1;
}

.results-card--blue {
    color: #fff;
    position: relative;
    overflow: hidden;
    background: url(/static/images/europe-home/paid_bg.png) center center / cover no-repeat;
    background-color: #0053E2;
}


@media (max-width: 1100px) {
    .results-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-text-block,
    .results-header-right,
    .pos-top-1,
    .pos-top-2,
    .pos-bottom-1,
    .pos-bottom-2,
    .pos-bottom-3,
    .pos-bottom-4 {
        grid-column: auto;
        grid-row: auto;
    }


    .results-text-block {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .results-header-right {
        grid-column: 1 / -1;
        padding-bottom: 0;
        margin-top: 8px;
    }
}

@media (max-width: 960px) {
    .results {
        margin-top: 80px;
    }
}

@media (max-width: 600px) {
    .results-grid-layout {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 34px 0 60px 0;
    }

    .results-card {
        min-height: 150px;
    }
}

@media (max-width: 520px) {
    .results {
        margin-top: 60px;
    }

    .results-card {
        padding: 24px;
        min-height: 120px;
    }

    .results-card__value {
        font-size: 40px;
    }

    .results-card__desc {
        font-size: 14px;
    }

    .desc-card--blue {
        font-size: 14px;
    }

    .results-main_text {
        font-size: 18px;
    }

    .results-subtext {
        max-width: 100%;
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.5;
    }

    .results-sub_txt {
        font-size: 16px;
    }
}









/* step */

.steps-section {
    margin-top: 160px;
    text-align: center;
}

.steps-section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #000000;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step-card {
    flex: 1;
    background: url('/static/images/europe-home/step1.png') center center / cover no-repeat;
    background-color: #E1D2FF;
    border-radius: 24px;
    padding: 24px 36px;
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-card_two {
    flex: 1;
    background: url('/static/images/europe-home/step2.png') center center / cover no-repeat;
    background-color: #E1D2FF;
    border-radius: 24px;
    padding: 24px 36px;
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-card_three {
    flex: 1;
    background: url('/static/images/europe-home/step3.png') center center / cover no-repeat;
    background-color: #E1D2FF;
    border-radius: 24px;
    padding: 24px 36px;
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.step-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #B86FFF;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    width: fit-content;
    z-index: 1;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.step-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #48146C;
    font-weight: 500;
    z-index: 1;
    position: relative;
}

.step-arrow {
    width: 60px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-arrow svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}


@media (max-width: 992px) {
    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .step-card,
    .step-card_two,
    .step-card_three {
        width: 80%;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 960px) {
    .steps-section {
        margin-top: 100px;
    }
}


@media (max-width: 520px) {

    .steps-section {
        margin-top: 60px;
    }

    .steps-section-title {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .step-card,
    .step-card_two,
    .step-card_three {
        width: 100%;
        padding: 20px 26px;
        min-height: 180px;
    }

    .step-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .steps-grid {
        flex-direction: column;
        gap: 20px;
    }

    .step-badge {
        font-size: 14px;
    }

}




/* Styling for a single testimonial, not the slider */
.testimonial {
    margin-top: 160px;
    width: 100%;
    height: 765px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #EEF2F6;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

.testimonial-section {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-sizing: border-box;
    padding: 0 20px;
}

.testimonial-card {
    width: 100%;
    overflow: hidden;
}

.testimonial-media {
    display: block;
}

.testimonial-image {
    width: 596px;
    height: 665px;
    object-fit: cover;
    border-radius: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    background: white;
    padding: 50px;
    border-radius: 30px;
    max-width: 600px;
    height: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-badge {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #000;
    padding: 8px 16px;
    border-radius: 8px;
    width: fit-content;
    font-weight: 500;
    font-size: 16px;
}

.testimonial-title {
    color: #0053E2;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.testimonial-text {
    font-family: 'Open Sans', sans-serif;
    color: #272624;
    font-style: italic;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.testimonial-author-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
}


.testimonial-author-name {
    color: #0053E2;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author-meta {
    font-size: 14px;
    line-height: 1.6;
    color: #272624;
}

.testimonial-company-logo {
    height: 45px;
}

.testimonial-results-btn {
    display: inline-block;
    background-color: #0056d2;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 8px;
    width: fit-content;
    border: 1px solid #0251E2;
    box-shadow: 0 0 10px rgba(0, 83, 226, .60);
    margin-top: 15px;
    border: 1px solid #0251E2;
}

.testimonial-results-btn:hover {
    background-color: #004CA3;
    color: white;
    border: 1px solid #0251E2;
}



@media (max-width: 1130px) {
    .testimonial-image {
        width: 460px;
        height: auto;
    }
}

@media (max-width: 1035px) {
    .testimonial {
        height: 600px;
    }
}



@media (min-width: 768px) and (max-width: 1024px) {
    .testimonial {
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 0 16px;
    }

    .testimonial-section {
        padding: 40px 0;
        margin-top: 120px;
    }


    .testimonial-content {
        padding: 40px;
        max-width: 620px;
        height: auto;
    }

    .testimonial-title {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-author-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .testimonial-company-logo {
        height: 44px;
    }
}


@media (max-width: 980px) {
    .testimonial-image {
        display: none;
    }

    .testimonial-content {
        max-width: 700px;
    }
}

@media (max-width: 960px) {
    .testimonial {
        margin-top: 100px;
    }

}


@media (max-width: 767px) {
    .testimonial-section {
        height: auto;
        padding: 20px 0;
        gap: 0;
    }

    .testimonial {
        min-width: 100%;
        height: 450px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 0 12px;
    }


    .testimonial-content {
        background: white;
        padding: 28px;
        border-radius: 30px;
        width: 100%;
        max-width: none;
        height: auto;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-author-info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .testimonial-company-logo {
        height: 38px;
    }

    .testimonial-title {
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .testimonial-results-btn {
        width: max-content;
    }

}

@media (max-width: 570px) {
    .testimonial {
        height: 640px;
    }
}

@media (max-width: 520px) {

    .testimonial {
        margin-top: 80px;
    }

    .testimonial {
        padding: 0 0;
    }

    .testimonial-author-meta {
        font-size: 12px;
        line-height: 1.6;
    }

    .testimonial-author-info {
        display: block;
    }

    .testimonial-company-logo {
        height: 38px;
        margin-top: 14px;
    }

    .testimonial-badge {
        font-size: 14px;
    }

    .testimonial-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-author-name {
        font-size: 14px;
    }

    .testimonial-results-btn {
        font-size: 16px;
        font-weight: 700;
        padding: 20px 20px;
    }

}


/* integration */

.b-integrations__title {
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    color: #000;
    max-width: 50%;
    margin: 0 auto;
    padding: 140px 0 60px
}

.b-integration_home_ua {
    margin: 128px 0 85px
}

.b-integration_home__main_txt_ua {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
    color: #000
}

.b-cta-demo_home__title,
.b-integration_home__main_txt {
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600
}

.b-integration_home {
    margin: 128px 0 85px
}

.b-integration_home__main_txt {
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    max-width: 70%;
    margin: 0 auto
}


.b-integration__img,
.b-integration_home__img,
.b-integration_home__img_ua,
.b-safe__security_data_business {
    margin-top: 68px
}

.b-cta-business__main_txt,
.b-header_home__title,
.b-integrations__title,
.b-work-order-app__check_title,
.b-work-order-app__txt {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    font-style: normal
}

@media screen and (max-width: 930px) {

    .b-integration_home__main_txt,
    .b-integration_home__main_txt_ua {
        max-width: 90%
    }
}

@media screen and (max-width: 520px) {

    .b-integration__img,
    .b-integration_home__img,
    .b-integration_home__img_ua {
        margin-top: 28px
    }

    .b-integrations__title {
        font-size: 18px;
        line-height: 30px;
        max-width: 100%;
        padding: 100px 0 60px
    }

    .b-integration_home {
        margin: 80px 0 85px
    }

}

@media screen and (max-width: 360px) {

    .b-header_home__icon,
    .b-img__mobile,
    .b-integration__img_block,
    .b-integration_home__img_block,
    .b-integration_home__img_block_ua,
    .b-team_app__img,
    .b-work-order-app__mobile,
    .b-work-order-app_home__mobile {
        width: 100%;
        height: auto
    }

}



/* progress */

.b-cta,
.b-progress,
.b-service,
.b-start {
    margin: 140px 0
}

.b-progress__title {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #000;
    text-align: center;
    margin-bottom: 80px
}

.b-progress__flex {
    display: flex;
    align-items: baseline;
    justify-content: space-between
}

.b-progress__line {
    background: #e3e3e3;
    border-radius: 10px;
    height: 10px;
    margin-left: 20px
}

.b-progress__dev,
.b-progress__dev_second,
.b-progress__dev_third {
    background: linear-gradient(89.98deg, rgba(71, 213, 71, .35) -7.05%, #52b321 99.98%);
    height: 10px;
    border-radius: 10px
}

.b-progress__dev {
    width: 0
}


.b-progress__percent {
    width: 5%;
    font-weight: 600;
    font-size: 18px;
    text-align: right;
    color: #000
}

.b-progress__main_txt,
.b-progress__percent,
.b-progress__sub_txt,
.b-start__sub_title,
.b-start__title {
    font-family: 'Open Sans', sans-serif;
    font-style: normal
}

.b-progress__sub_txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #272624;
    max-width: 50%;
    margin-bottom: 52px
}

.b-progress__main_txt {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    width: 60%
}

.b-progress__develop {
    width: 45%
}


.b-progress__dev_second,
.b-progress__dev_third {
    width: 70%
}

.b-progress__dev_third {
    width: 50%
}

.b-progress__dev_fourth {
    width: 16%;
    height: 10px;
    background: linear-gradient(89.99deg, rgba(71, 213, 71, .35) -7.07%, #52b321 595.94%);
    border-radius: 10px
}

.b-progress_home__btn_top {
    margin-top: 100px;
    text-align: center
}

.b-progress_home__btn {
    font-family: 'Open Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    width: 340px;
    justify-content: center;
    border-radius: 8px;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    background: #218838;
    color: #fff;
    box-shadow: 0 10px 24px rgba(89, 194, 122, .28);
    transition: transform .15s ease, box-shadow .15s ease;
}


.b-progress_home__btn:hover {
    background: #19692C;
    color: #fff
}

.b-progress__sub_title {
    font-style: normal;
    line-height: 24px;
    color: #000;
    padding-top: 40px;
    margin: auto;
    text-align: center;
}


@media screen and (max-width: 768px) {
    .b-progress__develop {
        width: 60%
    }
}

@media screen and (max-width: 960px) {

    .b-progress {
        margin: 100px 0
    }

    .b-progress__develop,
    .b-progress__percent {
        display: inline-block
    }

    .b-progress__flex {
        display: block
    }

    .b-progress__line {
        margin-left: 0
    }

    .b-progress__main_txt {
        width: 100%
    }

    .b-progress__sub_txt {
        max-width: 86%;
        margin: 40px 0 52px
    }


}

@media screen and (max-width: 520px) {

    .b-cta,
    .b-progress,
    .b-service,
    .b-start,
    .b-work-order-app {
        margin: 80px 0
    }

    .b-progress__develop {
        width: 80%
    }

    .b-progress__title {
        margin-bottom: 68px;
        font-size: 20px
    }

    .b-progress__main_txt {
        font-size: 16px;
        line-height: 28px
    }

    .b-progress__sub_txt {
        max-width: 100%;
        font-size: 14px;
        line-height: 24px;
        margin: 24px 0 42px
    }

    .b-progress__percent {
        font-size: 14px;
    }

    .b-progress__sub_title {
        font-size: 16px;
        text-align: center;
        font-family: 'Open Sans', sans-serif;
    }

    .b-progress_home__btn_top {
        margin-top: 82px;
        text-align: center;
    }

    .b-progress__sub_title {
        font-size: 14px;
        line-height: 18px;
    }
}



.slider-wrapper {
    touch-action: pan-y;
}

.slider-section {
    margin-top: 160px;
    background: #EEF2F6;
    padding: 60px 0;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.slider-track {
    display: flex;
    transition: transform .45s ease;
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}



.slide-image {
    width: 596px;
    height: auto;
    border-radius: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}



.slide-content {
    background: #fff;
    padding: 48px;
    border-radius: 30px;
    max-width: 620px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .02);
}

.badge {
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    width: fit-content;
}

.slide-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #0053E2;
    font-size: 22px;
    margin: 0;
}

.slide-text {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.company-logo {
    height: 53px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.04));

}

.results-btn {
    font-family: 'Open Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    background-color: #0056d2;
    color: white;
    width: fit-content;
    border: 1px solid #0251E2;
    box-shadow: 0 0 10px rgba(0, 83, 226, .60);
}

.results-btn:hover {
    background: #004CA3;
    border: 1px solid #0251E2;
    color: white;
}

.author-name {
    font-family: 'Open Sans', sans-serif;
    color: #0053E2;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-meta {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #272624;
}



.slider-wrapper {
    position: relative;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E1E6EF;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    z-index: 2;
    transition: background .2s ease, color .2s ease;
}

.slider-arrow:hover {
    background: #0053E2;
    color: #fff;
}


.slider-arrow--prev {
    left: 0px;
}

.slider-arrow--next {
    right: 0px;
}





.dots-container {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0053E2;
    opacity: .3;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    transform: scale(1.15);
}


@media (max-width: 1024px) {
    .slide-image {
        display: none;
    }

    .slide {
        gap: 0;
    }

    .slider-section {
        padding: 40px 0;
        margin-top: 120px;
    }
}


@media (max-width: 767px) {
    .slider-section {
        margin-top: 80px;
        padding: 24px 0;
    }

    .slide {
        padding: 0 16px;
    }

    .slide-content {
        padding: 24px;
        border-radius: 20px;
    }

    .author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .results-btn {
        font-size: 16px;
        padding: 16px 24px;
    }

    .slider-arrow--prev {
        left: 1px;
    }

    .slider-arrow--next {
        right: 1px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

@media (max-width: 520px) {

    .author-meta {
        font-size: 12px;
    }

    .author-info {
        display: block;
    }

    .company-logo {
        height: 38px;
        width: auto;
        margin-top: 14px;
    }

    .badge {
        font-size: 14px;
    }

    .slide-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .slide-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .author-name {
        font-size: 14px;
    }

    .results-btn {
        font-size: 16px;
        font-weight: 700;
        padding: 20px 20px;
    }

}


@media (max-width: 480px) {

    .slider-wrapper {
        overflow-x: hidden;
    }

    .slide {
        padding: 0;
        width: 100vw;
        max-width: 100vw;
        /* flex: 0 0 100vw; */
    }

    .slide-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 40px;
        border-radius: 16px;
    }

    .results-btn {
        width: 100%;
        text-align: center;
    }
}