/* =========================================================
   DATICS — SERVICES OVERVIEW SECTION
========================================================= */

.services-overview-section {
    position: relative;

    width: 100%;

    min-height: 326px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #f2f6ff 0%,
            #f4f4ff 45%,
            #f5f1ff 100%
        );

    box-sizing: border-box;
        margin-top: 200px;
}


/* =========================================================
   CONTAINER
========================================================= */

.services-overview-container {
    width: 100%;
    max-width: 1200px;

    padding: 70px 30px 55px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   BADGE
========================================================= */

.services-overview-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 42px;

    padding: 0 19px;

    border: 1px solid rgba(77, 112, 255, 0.28);

    border-radius: 999px;

    background:
        linear-gradient(
            100deg,
            rgba(226, 239, 255, 0.95),
            rgba(238, 229, 255, 0.95)
        );

    color: #2e64e9;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.7px;

    line-height: 1;

    box-shadow:
        0 4px 14px rgba(77, 100, 220, 0.06);

    box-sizing: border-box;
}


/* Badge Icon */

.services-overview-badge-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #2968ff;

    font-size: 20px;

    font-weight: 700;

    line-height: 1;

    transform: translateY(-1px);
}


/* =========================================================
   TITLE
========================================================= */

.services-overview-title {
    margin: 18px 0 0;

    padding: 0;

    color: #10182b;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: clamp(48px, 5vw, 64px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.8px;

    text-align: center;
}


/* Gradient part */

.services-overview-title span {
    display: inline;

    background:
        linear-gradient(
            90deg,
            #2864ed 0%,
            #3c5eea 35%,
            #7140e9 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.services-overview-description {
    margin: 20px 0 0;

    padding: 0;

    color: #66738c;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 0;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .services-overview-section {
        min-height: 310px;
    }

    .services-overview-container {
        padding-top: 62px;
        padding-bottom: 50px;
    }

    .services-overview-title {
        font-size: clamp(42px, 7vw, 56px);

        letter-spacing: -2.2px;
    }

    .services-overview-description {
        font-size: 18px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .services-overview-section {
        min-height: 280px;
    }

    .services-overview-container {
        padding: 50px 20px 45px;
    }


    /* Badge */

    .services-overview-badge {
        min-height: 38px;

        padding: 0 15px;

        gap: 7px;

        font-size: 12px;

        letter-spacing: 0.55px;
    }

    .services-overview-badge-icon {
        font-size: 17px;
    }


    /* Heading */

    .services-overview-title {
        margin-top: 17px;

        font-size: clamp(35px, 10vw, 45px);

        line-height: 1.08;

        letter-spacing: -1.7px;
    }


    /* Description */

    .services-overview-description {
        max-width: 360px;

        margin-top: 17px;

        font-size: 15px;

        line-height: 1.55;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .services-overview-section {
        min-height: 260px;
    }

    .services-overview-container {
        padding: 44px 16px 40px;
    }

    .services-overview-title {
        font-size: 34px;

        letter-spacing: -1.4px;
    }

    .services-overview-description {
        font-size: 14px;
    }
}