.scta {
    position: relative;
    overflow: hidden;
    /* background-color: #002D62; */
    background: linear-gradient(135deg, rgb(19 73 133 / 88%) 0%, rgb(10 37 80 / 96%) 100%);
    background: linear-gradient(135deg, rgb(12 73 142) 0%, rgb(10 37 80 / 96%) 100%);
    display: flex;
    align-items: center;
}


.scta-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: uipPhGrid 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}


.scta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 30px;
    gap: 40px;
}

.scta-image {
    flex: 0 0 45%;
    max-width: 45%;
}

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

/* Відцентрувати текст якщо не задав зображення */
.scta:not(.scta--has-image) .scta-content {
    text-align: center;
    margin: 0 auto;
}


.scta-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 30px 0;
}


.scta-heading {
    font-weight: 700;
    font-size: clamp(20px, 3vw, 36px);
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.scta-heading__line {
    display: block;
}

.scta-heading__highlight {
    display: block;
    color: #79B933;
}




@media (max-width: 849px) {
    .scta {
        min-height: auto;
    }

    .scta-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 20px;
        gap: 24px;
    }

    .scta-image {
        flex: 0 0 auto;
        max-width: 70%;
        margin: 0 auto;
    }

    .scta-content {
        align-items: center;
    }

    .scta-heading {
        font-size: 26px;
    }
}

@media (max-width: 549px) {
    .scta-heading {
        font-size: 22px;
    }

    .scta-image {
        max-width: 90%;
        display: none;
    }
}