@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
html {
    scroll-behavior: smooth
}

.header {
    display: none;
}

.circle-pulse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin: 4px 0;
    border-radius: 100%;
    background-color: rgba(64, 154, 101, 0.20);

    span {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        background-color: rgb(64, 154, 101);
        position: relative;
        z-index: 2;
    }
}

.circle-pulse::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: rgba(64, 154, 101, 0.20);
    animation: pulse 1.5s ease-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.landing-page {
    .banner {
        position: sticky;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        height: 44px;
        padding: 0 20px;
        background-color: rgba(0, 0, 0, 1);

        font-size: 16px;
        font-weight: 600;
        line-height: 44px;
        color: rgba(251, 251, 253, 1);
        z-index: 100;
    }

    background-color: rgb(255, 255, 255, 1);

    padding-top: 0;

    h1, h2, h3, h4 {
        margin: 0;
    }

    p {
        margin: 0;
    }

    .hero {
        border-radius: 0 0 48px 48px;
        padding-top: 48px;
        background-color: #FAF7F5;
        background-image: url("/wp-content/themes/simplydepo/images/landing-page/book-a-demo-new_bg.png");
        background-repeat: no-repeat;
        background-position: right 0 top 0;

        .container {
        }

        .hero__wrapper {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        .logo {
            padding: unset;
            max-width: fit-content;
            min-width: 189px;
        }

        .hero__content {
            display: flex;
            position: relative;
            flex-direction: column;
            /*gap: 64px;*/
        }

        .hero__intro {
            width: calc((100% / 2) - 32px);
            display: flex;
            flex-direction: column;
            align-items: start;
            min-height: 566px;
        }

        .hero__header {
            margin-bottom: 24px;
        }

        .hero__subtitle {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;

            span {
                color: #4B4A4A;
                font-weight: 500;
                line-height: 1.5;
            }
        }

        .hero__title {
            color: #1A1A1A;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.44px;
            text-align: left;
        }

        .field-sales__list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .field-sales__item {
            padding: 3px 11px;
            border-radius: 24px;
            background-color: rgba(232, 229, 228, 1);

            color: #1A1A1A;
            font-size: 13px;
            font-weight: 500;
            line-height: 1.5;
            letter-spacing: 0.13px;
        }

        .retail-ops__list {
            color: #262626;
            font-size: 18px;
            line-height: 1.4;
            text-align: left;

            :not(:last-of-type) {
                margin-bottom: 12px;
            }
        }

        .retail-ops__item {
            display: flex;
            gap: 10px;

            svg {
                margin-top: 2px;
                min-width: 18px;
            }
        }

        .retail-ops__item:not(:first-child) .retail-ops__text {
            font-weight: 500;
        }

        .hero__brands {
            margin-top: auto;
        }

        /*.hero__brands-text {*/
        /*    margin-bottom: 16px;*/
        /*    text-align: left;*/
        /*}*/

        .brands__list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            align-items: center;
        }

        .brands__list {
            display: flex;
            justify-content: flex-start;
            gap: 32px;
        }

        .brands__item {
            max-width: 100px;
            min-width: 64px;
            width: 100%;
        }
    }

    .landing-form {
        .landing-form__header {
            display: flex;
            flex-direction: column;
            align-items: start;
            padding: 24px 24px;
            margin-bottom: 16px;
            font-weight: 600;
            line-height: 1.5;
            color: rgba(0, 103, 70, 1);
            border-radius: 16px;
            background: linear-gradient(180deg, #E1F5E7 0%, rgba(225, 245, 231, 0.00) 100%);
            text-align: left;
        }

        .landing-form__sub-title {
            margin-bottom: 8px;
            font-size: 14px;
            line-height: 1.42;
        }

        .landing-form__title {
            margin-bottom: 20px;
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.32px;
            color: inherit;
        }

        .landing-form__list {
            display: flex;
            flex-wrap: wrap;
            text-align: left;
            gap: 12px;
        }

        .landing-form__item {
            width: calc(50% - 6px);
            display: flex;
            align-items: center;
            gap: 8px;
        }
    }

    .landing-page__form {
        position: absolute;
        top: 0;
        right: 0;
        width: calc((100% / 2) - 32px);
        padding: 8px 8px 20px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 8px 16px -6px rgba(24, 39, 75, 0.08);
        /*position: relative;*/
        z-index: 1;

        form {
            padding: 0 24px;

            *:not(:nth-last-child(-n+2)) {
                margin-bottom: 20px;
            }

            .field-set {
                display: flex;
                gap: 20px;
                text-align: left;
            }

            .field-select {
                margin-bottom: 24px;
                text-align: left;
            }

            .field-title {
                display: inline-block;
                margin-bottom: 4px;
                font-size: 15px;
                font-weight: 500;
                line-height: 1.33;
                color: rgba(40, 40, 40, 1);
            }

            .button {
                width: 100%;
                border: none;
            }

            input:not([type="radio"]):not([type="submit"]):not([type="range"]) {
                height: 44px;
                border: none;
                outline: none;
                padding: 0 16px;
                font-size: 15px;
                line-height: 44px;
                background-color: rgb(245, 245, 245);
                box-shadow: 0 0 0 1.5px rgba(204, 204, 204, 0);
                transition: background-color 0.4s ease, box-shadow 0.4s ease;
            }

            input:not([type="radio"]):not([type="submit"]):hover:not(:focus),
            .wpcf7-form-control.wpcf7-not-valid:focus {
                background-color: rgb(252, 252, 252);
                box-shadow: 0 0 0 1.5px rgba(204, 204, 204, 1);
            }

            input:not([type="radio"]):not([type="submit"]):focus {
                outline: unset !important;
                background-color: rgb(252, 252, 252);
                box-shadow: 0 0 0 1.5px rgba(64, 154, 101, 1);
                color: inherit !important;
                caret-color: inherit !important;
            }

            .wpcf7-form-control.wpcf7-not-valid {
                outline: 1.5px solid rgba(243, 113, 113, 1)!important;
                background-color: rgba(255, 255, 255, 1);
                color: rgba(243, 113, 113, 1)!important;
                caret-color: rgba(243, 113, 113, 1)!important;
            }

            .wpcf7-not-valid-tip {
                color: rgba(180, 39, 39, 1);
                font-size: 13px;
                font-weight: 500;
                line-height: 1.3;
                text-align: left;
                margin-top: 4px;
            }

            .wpcf7-not-valid-tip::before {
                content: "";
                display: inline-block;
                width: 13px;
                height: 13px;
                background-image: url("/wp-content/themes/simplydepo/images/book-a-demo-new/form-alert-icon.svg");
                background-repeat: no-repeat;
                /*background-position: center;*/
                background-size: contain;
                margin-right: 6px;
                vertical-align: middle;
            }

            .wpcf7-select {
                height: 44px;
                line-height: 44px;
                padding: 0 16px;
                text-align: left;
                transition: background-color 0.4s ease, box-shadow 0.4s ease;

                .option {
                    color: #666;
                    font-size: 15px;
                    line-height: 1.5;
                }
            }

            .wpcf7-select:hover:not(:focus) {
                background-color: rgb(252, 252, 252);
                box-shadow: 0 0 0 1.5px rgba(204, 204, 204, 1);
            }

            .wpcf7-select:focus {
                /*outline: unset;*/
                background-color: rgb(252, 252, 252);
                box-shadow: 0 0 0 1.5px rgba(64, 154, 101, 1);
            }
        }

        .wpcf7 form.sent .wpcf7-response-output{
            display: none;
        }

        .landing-page__privacy {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-top: 12px;
            color: #4B4A4A;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.42;

            a {
                color: inherit;
                text-decoration: underline;
            }
        }

        .landing-page__privacy::before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            vertical-align: middle;
            background: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><g opacity='0.8'><path d='M8.65902 1.92951C8.24428 1.72214 7.75611 1.72214 7.34137 1.92951L3.2002 4.0001V9.3521C3.2002 10.8001 4.90846 12.4476 8.0002 14.4001C11.0919 12.4476 12.8002 11.2001 12.8002 9.3521C12.8002 7.5041 12.8002 4.0001 12.8002 4.0001L8.65902 1.92951Z' stroke='%23777777' stroke-width='1.5' stroke-linejoin='round'/></g></svg>") no-repeat center;
            background-size: contain;
        }

    }

    .distributors {
        padding-top: 64px;
        padding-bottom: 48px;

        .sales-teams__title {
            margin: 0 auto 40px;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.42;
            text-transform: uppercase;
            color: rgba(119, 119, 119, 1);
        }

        .distributors__logos {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    }

    .competitive {
        padding: 80px 0;

        .competitive__wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 48px;
        }

        .competitive__header {
            max-width: 54%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .competitive__subtitle {
            display: inline-block;
            height: 28px;
            padding: 0 16px;
            border-radius: 40px;
            border: 1px solid rgba(64, 154, 101, 0.50);
            font-size: 14px;
            font-weight: 600;
            line-height: 28px;
            letter-spacing: 0.56px;
            text-transform: uppercase;
            color: rgba(0, 103, 70, 1);
        }

        .competitive__title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.16;
            letter-spacing: -0.48px;
            color: rgba(40, 40, 40, 1);
        }

        .competitive__menu {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            color: rgba(40, 40, 40, 1);
        }

        .competitive__menu-button {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            height: 100px;
            width: calc((100% / 4) - 12px);
            padding: 20px;
            border-radius: 16px;
            outline: 1px solid rgba(216, 216, 216, 1);
            background: rgba(255, 255, 255, 1);

            span {
                text-align: center;
                font-size: 16px;
                font-weight: 500;
                line-height: 1.5;
            }
        }

        .competitive-tubs {
        }

        .competitive-tubs__item {
            display: none;
            justify-content: space-between;

            img {
                width: 46%;
                min-width: 335px;
            }
        }

        .competitive-tubs__item.active {
            display: flex;
            flex-wrap: wrap;
        }

        .competitive__menu-button.active {
            color: rgba(64, 154, 101, 1);
            outline: 2px solid rgba(64, 154, 101, 1);
        }

        .competitive__menu-button.active svg path{
            fill: rgba(64, 154, 101, 1);
        }

        .competitive-tubs__content {
            width: 47%;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .competitive-tubs__title {
            width: 65%;
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.4px;
            color: rgba(51, 51, 51, 1);
        }

        .competitive-tubs__desc {
        }
        .competitive-tubs__desc-item {
            display: flex;
            gap: 16px;

            svg {
                flex-shrink: 0;
                margin-top: 2px;
            }

            &:not(:last-of-type) {
                padding-bottom: 24px;
                margin-bottom: 24px;
                border-bottom: 1px solid rgba(229, 229, 229, 1);
            }
        }

        .competitive-tubs__desc-title {
            margin-bottom: 4px;
            color: rgb(0, 0, 0, 1);
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4;
        }

        .competitive-tubs__desc-text {
            color: rgb(0, 0, 0, 1);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
            letter-spacing: 0.16px;
        }
    }

    .cases {
        padding: 80px 0;

        .cases__wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .cases__header {
            /*max-width: 54%;*/
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            margin-bottom: 32px;
        }

        .cases__subtitle {
            display: inline-block;
            height: 28px;
            padding: 0 16px;
            border-radius: 40px;
            border: 1px solid rgba(64, 154, 101, 0.50);
            font-size: 14px;
            font-weight: 600;
            line-height: 28px;
            letter-spacing: 0.56px;
            text-transform: uppercase;
            color: rgba(0, 103, 70, 1);
        }

        .cases__title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.16;
            letter-spacing: -0.48px;
            color: rgba(40, 40, 40, 1);

            span {
                color: rgba(0, 103, 70, 1);
            }
        }

        .cases__menu {
            display: flex;
            margin-bottom: 56px;
            gap: 16px;
        }

        .cases__menu-button {
            display: flex;
            height: 36px;
            padding: 0 16px;
            color: rgba(40, 40, 40, 1);
            font-size: 18px;
            font-weight: 500;
            line-height: 36px;
            border-radius: 999px;
            outline: 1px solid rgba(216, 216, 216, 1);
            background-color: rgb(255, 255,255, 1);
        }

        .cases__menu-button.active {
            color: rgb(255, 255,255, 1);
            background-color: rgba(64, 154, 101, 1);
            outline: none;
        }

        .cases-tubs {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .cases-tubs__item {
            display: none;
            gap: 16px;
        }

        .cases-tubs__item.active {
            display: flex;
        }

        .cases-tubs__content-left {
            width: 34%;
            display: flex;
            flex-direction: column;
            padding: 40px;
            border-radius: 24px;
            background-color: rgba(247, 244, 242, 1);
        }

        .cases-tubs__header {
            color: rgba(40, 40, 40, 1);
        }

        .cases-tubs__subtitle {
            display: inline-block;
            margin-bottom: 16px;
            font-family: Caveat;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.33;
            color: rgb(119, 119, 119, 1);
        }

        .cases-tubs__title {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.4px;
            color: rgba(40, 40, 40, 1);
        }

        .cases-tubs__text {
            margin-top: auto;
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.44;
            letter-spacing: 0.18px;
        }

        .cases-tubs__content-right {
            width: 66%;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
            padding: 16px;
            border-radius: 32px;
            background-color: rgba(247, 244, 242, 1);

            img {
                 height: 469px;
				/*max-width: 460px;*/
                margin: 0 auto;
            }
        }

        .stats__list {
            height: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 16px;

            & > * {
                flex: 1;
            }
        }

        .stats__item {
            width: 224px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 24px;
            border-radius: 24px;
            background-color: rgba(255, 255, 255, 0.80);
            text-align: center;
        }

        .stats__num {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.2;
            color: rgba(40, 40, 40, 1);
        }

        .stats__desc {
            max-width: 75%;
            color: rgba(51, 51, 51, 1);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.25;
            letter-spacing: 0.16px;
        }
    }

    .integrations {
        padding: 96px 0;
        background-color: rgba(247, 244, 242, 1);
        background-image: url("/wp-content/themes/simplydepo/images/landing-page/integrations-bg.svg");
        background-repeat: no-repeat;
        background-position: right;
        background-size: cover;

        .container {
        }

        .integrations__wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 48px;
        }

        .integrations__header {
            width: 48%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .integrations__subtitle {
            display: inline-block;
            margin-bottom: 24px;
            height: 28px;
            padding: 0 16px;
            border-radius: 40px;
            border: 1px solid rgba(64, 154, 101, 0.50);
            font-size: 14px;
            font-weight: 600;
            line-height: 28px;
            letter-spacing: 0.56px;
            text-transform: uppercase;
            color: rgba(0, 103, 70, 1);
        }

        .integrations__title {
            margin-bottom: 12px;
            font-size: 44px;
            font-weight: 700;
            line-height: 44px;
            letter-spacing: -0.44px;
            color: rgba(40, 40, 40, 1);
        }

        .integrations__text {
            text-align: center;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.55;
            letter-spacing: 0.18px;
            color: rgba(51, 51, 51, 1);
        }

        .integrations__list {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: 16px;
        }

        .integrations__item {
            width: calc((100% / 4) - 12px);
            height: 136px;
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            border-radius: 16px;
            background:  rgba(255, 255, 255, 1);

            span {
                font-size: 18px;
                font-weight: 500;
                line-height: 1.44;
                color: rgba(40, 40, 40, 1);
            }
        }
    }

    @media (max-width: 1199px) {
        .hero {
            .hero__content {
                justify-content: center;
            }

            .hero__intro {
                /*width: unset;*/
            }

            .hero__header {
                margin-bottom: 20px;
            }

            .field-sales__list {
                margin-bottom: 23px;
            }

            .retail-ops__list {
                margin-bottom: 32px;
            }
        }

        .cases {

            .stats__list {
                flex-direction: row;
                height: unset;
                width: 100%;
            }
        }
    }

    @media (max-width: 991px) {
        .hero {
            .hero__intro {
                width: 100%;
            }
        }

        .landing-page__form {
            position: unset;
            width: 100%;
        }
    }

    @media (max-width: 767px) {
        .container {
            padding: 0 20px;
        }

        .banner {
            height: 36px;
            font-size: 14px;
            line-height: 36px;

            svg {
                display: none;
            }
        }

        .hero {
            padding: 48px 0;
            border-radius: 0;
            background-image: url("/wp-content/themes/simplydepo/images/book-a-demo-new/book-a-demo-new_bg-mob.png");

            .logo {
                min-width: 162px;
            }

            .hero__wrapper {
                gap: 32px;
            }

            .hero__title {
                font-size: 32px;
            }

            .circle-pulse {
                margin: 3px 0;
            }

            .case-study__form-title {
                font-size: 18px;
            }

            .retail-ops__list {
                padding-bottom: 32px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.10);
            }

            .retail-ops__item {
                gap: 8px;
            }

            .retail-ops__text {
                font-size: 16px;
            }

            .retail-ops__item:not(:first-child) .retail-ops__text{
                font-weight: 500;
            }

            .hero__brands-text {
                text-align: center;
            }

            .brands__list {
                justify-content: center;
                gap: 24px;
            }

            .brands__item {
                width: calc((100% / 4) - 24px);
            }
        }

        .landing-form {
            padding: 4px;
            .landing-form__header {
                border-radius: 12px;
            }

            .landing-form__sub-title {
                margin-bottom: 4px;
            }

            .landing-form__title {
                margin-bottom: 16px;
                font-size: 24px;
            }

            .landing-form__list {
                flex-direction: column;
                gap: 4px;
            }

            .landing-form__item {
                width: 100%;
            }
        }

        .landing-page__form {
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-radius: 16px;

            form {
                padding: 0 16px;

                .field-set {
                    flex-direction: column;
                    gap: 16px;
                }

                *:not(:nth-last-child(-n+2)) {
                    margin-bottom: 16px;
                }
            }
        }

        .distributors {
            padding: 48px 0;

            .sales-teams__title {
                margin-bottom: 32px;
            }
        }

        .competitive {
            padding: 48px 0;

            .competitive__wrapper {
                gap: 24px;
            }

            .competitive__header {
                max-width: unset;
            }

            .competitive__title {
                font-size: 28px;
            }

            .competitive__menu {
                gap: 12px;
            }

            .competitive__menu-button {
                width: calc((100% / 2) - 6px);
                height: 76px;
                padding: 12px;

                span {
                    font-size: 12px;
                    font-weight: 600;
                }
            }

            .competitive-tubs__item {
                img {
                    order: -1;
                    width: 100%;
                    margin-bottom: 16px;
                }
            }

            .competitive-tubs__content {
                width: 100%;
                gap: 24px;
            }

            .competitive-tubs__title {
                font-size: 24px;
                letter-spacing: -0.2px;
            }

            .competitive-tubs__desc-item {
                gap: 12px;

                &:not(:last-of-type) {
                    padding-bottom: 12px;
                    margin-bottom: 12px;
                }

                .competitive-tubs__desc-title {
                    font-size: 16px;
                }

                .competitive-tubs__desc-text {
                    font-size: 14px;
                }
            }
            .button {
                width: 100%;
            }
        }

        .cases {
            padding: 48px 0;

            .cases__header {
                gap: 16px;
                margin-bottom: 24px;
            }

            .cases__title {
                font-size: 28px;
                letter-spacing: -0.28px;
                line-height: 1.28;
            }

            .cases__menu {
                gap: 10px;
                margin-bottom: 16px;
            }

            .cases__menu-button {
                padding: 0 12px;
                font-size: 14px;
                height: 32px;
                line-height: 32px;
            }

            .cases-tubs__item {
                gap: unset;
                flex-wrap: wrap;
            }

            .cases-tubs__content-left {
                width: 100%;
                padding: 20px 20px 4px;
                border-radius: 16px 16px 0 0;
            }

            .cases-tubs__header {
                margin-bottom: 8px;
                font-size: 28px;
                font-weight: 700;
                line-height: 1.28;
                letter-spacing: -0.28px;
            }

            .cases-tubs__subtitle {
                margin-bottom: 8px;
                font-size: 20px;
                line-height: 1.4;
            }

            .cases-tubs__title {
                font-size: 24px;
                font-weight: 700;
                line-height: 1.33;
                letter-spacing: -0.2px;
            }

            .cases-tubs__text {
                font-size: 16px;
                line-height: 1.5;
                letter-spacing: 0.16px;
                margin-bottom: 24px;
            }

            .button {
                width: 100%;
            }

            .cases-tubs__content-right {
                width: 100%;
                gap: unset;
                padding: 4px 12px 12px;
                border-radius: 0 0 16px 16px;

                img {
                    height: unset;
                }
            }

            .stats__list {
                position: relative;
                gap: unset;
                height: 108px;

                &::after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    right: 50%;
                    top: 22px;
                    width: 1px;
                    height: 64px;
                    background-color: rgba(229, 229, 229, 1);
                }
            }

            .stats__item {
                height: 100%;
                padding: 16px;

                &:nth-of-type(1) {
                    border-radius: 10px 0 0 10px;
                }

                &:nth-of-type(2) {
                    border-radius: 0 10px 10px 0;
                }
            }

            .stats__num {
                font-size: 24px;
            }

            .stats__desc {
                font-size: 12px;
            }
        }

        .integrations {
            padding: 48px 0;
            background-position: 26% 0;

            .integrations__wrapper {
                gap: 24px;
            }

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

            .integrations__subtitle {
                margin-bottom: 16px;
            }

            .integrations__title {
                font-size: 28px;
            }

            .integrations__text {
                font-size: 16px;
            }

            .integrations__list {
                gap: 8px;
            }

            .integrations__item {
                width: calc((100% / 2) - 4px);
                padding: 12px;
                height: 80px;
                gap: 8px;
                border-radius: 12px;

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

                span {
                    font-size: 16px;
                }
            }
        }
    }
}