    .services-marketing {
        .marketing-hero {
            background-color: var(--light-color);
            padding-inline: var(--marketing-hero-section-inline-padding);
            box-shadow: 0 0px 15px -2px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;

            &:before {
                content: '';
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
                opacity: 0.05;
                background-image: url(../../images/website/services-marketing/hero-bg.png);
                background-position: center center;
                background-size: cover;
                background-repeat: no-repeat;
            }

            & .last-image {
                height: auto !important;
            }
        }

        .important-articles {
            &>.title {
                font-size: 24px;
            }
        }

        .platform-management-sections {
            text-align: start;
            overflow: hidden;
            padding: 70px var(--platform-management-section-inline-padding);

            & .title {
                font-size: 30px;

                & .title-badge {
                    padding: 1px 15px;

                    &::before {
                        transform: skew(0);
                        border-radius: 5px;
                    }
                }
            }

            &::before,
            &::after {
                content: "";
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: auto;
                right: auto;
                z-index: -3;
                background-repeat: no-repeat;
                background-size: contain;
                pointer-events: none;
            }

            &::before {
                left: 0;
                opacity: 0.15;
                background-image: url(../../images/website/platforms/platforms-left-bg.png);
                background-position: left top;
            }

            &::after {
                right: 0;
                opacity: 0.05;
                background-image: url(../../images/website/platforms/platforms-right-bg.png);
                background-position: right top;
            }

            .platform-cards {
                .platform {
                    padding: 25px;
                    border-radius: 12px;
                    margin-bottom: 0;
                    backdrop-filter: blur(8px);
                    border: 1px solid rgba(0, 0, 0, .08);
                    transition: all 0.1s ease;
                    position: relative;
                    overflow: hidden;

                    &:hover {
                        transform: translateY(-2px);
                        border: 1px solid var(--light-main-color);
                        box-shadow: 0 4px 8px -2px rgba(0, 0, 0, .12);
                    }

                    & h3,
                    & p {
                        margin: 0;
                    }

                    .platform-bg::before,
                    .platform-bg::after {
                        content: "";
                        position: absolute;
                        inset: auto;
                        width: 140px;
                        height: 140px;
                        border-radius: 18px;
                        opacity: .22;
                        pointer-events: none;
                    }

                    .platform-bg::before {
                        top: -40px;
                        right: -40px;
                        background: rgba(255, 138, 42, .35);
                        transform: rotate(10deg);
                    }

                    .platform-bg::after {
                        top: -28px;
                        right: -28px;
                        background: rgba(0, 0, 0, .10);
                        transform: rotate(-18deg);
                    }

                    .platform-title {
                        font-weight: 900;
                        margin-bottom: 10px;
                    }

                    .platform-desc {
                        font-size: 14px;
                    }
                }
            }
        }

        .work-lines-sections {
            padding: 50px var(--work-lines-section-inline-padding);
            background-color: var(--light-color);
            box-shadow: 0 0px 15px -2px rgba(0, 0, 0, 0.1);

            & .title {
                font-size: 36px;
                font-weight: 900;
                margin-bottom: 10px;
                color: var(--orange-color);
            }

            & .description {
                font-weight: bold;
            }

            .steps {
                width: 100%;
                border-top: 5px solid var(--orange-color);

                .step {
                    position: relative;
                    padding-top: 30px;
                    color: var(--orange-color);
                    counter-increment: step-counter;

                    &::after {
                        content: counter(step-counter);
                        width: 30px;
                        height: 30px;
                        position: absolute;
                        top: 0;
                        left: 50%;
                        font-size: 14px;
                        color: var(--orange-color);
                        transform: translate(-50%, -50%);
                        background-color: var(--light-color);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-weight: bold;
                        z-index: 51;
                        line-height: 1;
                        transition: 0.1s ease;
                        border: 3px solid var(--light-main-color);
                        box-shadow: 0 2px 16px -6px var(--light-muted-color);
                    }

                    & * {
                        opacity: 0.4;
                    }

                    &.active {
                        color: var(--dark-color);

                        & * {
                            opacity: 1;
                        }

                        &::after {
                            content: '\2713';
                            color: var(--light-color);
                            background-color: var(--orange-color);
                        }
                    }
                }

                .image {
                    width: 80px;
                    height: 80px;
                    margin: 0 auto;
                }
            }
        }

        .packages-marketing {
            padding-inline: calc(var(--packages-marketing-section-inline-padding) / 2);
            background-color: #FFFDF8;

            & .title {
                font-size: 30px;
                font-weight: 900;
                margin-bottom: 10px;
            }

            & .content {
                padding: 50px var(--small-inline-padding);
                overflow: hidden;
                position: relative;
            }

            & .section-svg .left-svg,
            & .section-svg .right-svg {
                width: 150px;
                height: 150px;
                opacity: 0.1;
                position: absolute;

                &::before,
                &::after {
                    content: '';
                    width: 100%;
                    height: 100%;
                    display: block;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    z-index: 50;
                    transform: translate(-50%, -50%) rotate(45deg);
                    border: 5px solid var(--light-main-color);
                }

                &::after {
                    width: calc(100% - 50px);
                    height: calc(100% - 50px);
                }
            }

            & .section-svg .left-svg {
                top: 50px;
                left: -40px;
                animation: float 6s ease-in-out infinite;

            }

            & .section-svg .right-svg {
                bottom: 50px;
                right: -40px;
                animation: float2 6s ease-in-out infinite;

                &::after {
                    transform: translate(-50%, -50%);
                }
            }

            & .service-card {
                padding-top: 20px;
                border-radius: 10px;
                background-color: var(--light-color);
                border: 2px solid var(--light-main-color);
                position: relative;
                transition: all 0.2s ease;

                &:hover {
                    z-index: 10;
                    transform: translateY(-5px) scale(1.01);
                    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                }
            }

            & .service-card .image {
                width: 50px;
                height: 50px;
                padding: 10px;
                margin: 0 auto 20px;
                border-radius: 10px;
                background-color: var(--main-hover-color);

                & i,
                & svg {
                    color: var(--light-main-color);
                }
            }

            & .service-card .image+h3 {
                font-weight: 900;
            }

            & .service-card .feature-card {
                text-align: start;
                margin-bottom: 10px;
            }

            & .service-card .feature-card svg {
                width: 15px;
                min-width: 15px;
                height: 15px;
                display: flex;
                border-radius: 4px;
                align-items: center;
                justify-content: center;
                color: var(--light-color);
                filter: saturate(1.5);
                background-color: var(--light-main-color);
            }

            & .service-card .feature-card svg+span {
                font-size: 14px;
            }
        }
    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(40px);
        }

        100% {
            transform: translateY(0);
        }
    }

    @keyframes float2 {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(20px) rotate(3deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    @media (max-width: 1440px) {
        .services-marketing {
            .marketing-hero {
                padding-inline: calc(var(--marketing-hero-section-inline-padding) / 2);
            }
        }
    }

    @media (max-width: 1080px) {
        .services-marketing {
            .marketing-hero {
                padding-inline: calc(var(--marketing-hero-section-inline-padding) / 3);
            }
        }
    }

    @media (max-width: 768px) {
        .services-marketing {
            .marketing-hero {
                padding-inline: var(--small-inline-padding);
            }
        }
    }

    @media (max-width: 992px) {
        .services-marketing {
            .work-lines-sections {
                padding: 30px var(--main-inline-padding);

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

                .steps {
                    border-top: 2px solid var(--orange-color);

                    .step {
                        padding-top: 20px;

                        &::after {
                            width: 20px;
                            height: 20px;
                            font-size: 10px;
                            border: 2px solid var(--light-main-color);
                        }
                    }

                    .step-title {
                        font-size: 12px;
                    }

                    .image {
                        width: 35px;
                        height: 35px;
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        .services-marketing {
            .platform-management-sections {
                & .title {
                    font-size: 20px;
                }

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

            .work-lines-sections {
                padding: 30px var(--main-inline-padding);

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

                .steps {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    border: none;

                    .step {
                        width: 100%;
                        padding-top: 20px;

                        & * {
                            opacity: 0.7;
                        }
                    }

                    .step-title {
                        font-size: 12px;
                    }

                    .image {
                        width: 35px;
                        height: 35px;
                    }
                }
            }
        }
    }

    @media (max-width: 425px) {
        .services-marketing {
            .platform-management-sections {
                &::before {
                    background-position: center bottom;
                }

                &::after {
                    right: 0;
                    background-position: center top;
                }

                & .title {
                    font-size: 14px;
                }

                .platform-cards {
                    grid-template-columns: repeat(1, 1fr);
                }
            }

            .work-lines-sections {
                padding: 30px var(--main-inline-padding);

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

                & .title+p {
                    font-size: 10px;
                }

                .steps {
                    gap: 40px;
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    border: none;

                    .step {
                        padding-top: 20px;
                    }

                    .step-title {
                        font-size: 12px;
                    }

                    .image {
                        width: 35px;
                        height: 35px;
                    }
                }
            }
        }
    }