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

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: #000000;
    color: #ffffff;
}


.partner-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.partner-left {
    position: relative;
}

.partner-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #06BEAF;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

.partner-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color: #fff;
    margin-bottom: 100px;
    position: relative;
}

.partner-description {
    font-size: 16px;
    line-height: 30px;
    color: #9E9FA0;
    font-weight: 400;
    margin-bottom: 20px;
}


.statistics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.statistic-item {
    position: relative;
}

.statistic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.statistic-label {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.statistic-percentage {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.statistic-bar-container {
    width: 100%;
    height: 8px;
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.statistic-bar {
    height: 100%;
    background: linear-gradient(90deg, #06BEAF 0%, #00d4c8 100%);
    border-radius: 10px;
    transition: width 1.5s ease-out;
}

.partner-right {
    position: relative;
}

.partner-image-container {
    position: relative;
    width: 550px;
    height: 510px;
    overflow: hidden;
}

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

.decoration-circle-partner {
    position: absolute;
    border: 2px solid #FFFFFF33;
    border-radius: 50%;
    pointer-events: none;
    width: 800px;
    height: 800px;
    top: -300px;
    right: -300px;
}


.statistic-bar {
    width: 0;
}

.statistic-bar.animate {
    animation: expandBar 1.5s ease-out forwards;
}

@keyframes expandBar {
    to {
        width: var(--bar-width);
    }
}


        .services-vertical-section {
    padding: 80px 20px;
    background-color: #1A1A1A;
}

.services-vertical-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-vertical-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-vertical-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #06BEAF;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.services-vertical-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-left:300px;
}

.services-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-vertical-item {
    display: grid;
    grid-template-columns: 350px 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.service-v-images-single {
    position: relative;
}

.service-v-image-main {
    width: 100%;
    max-width: 350px;
    height: 180px;
    border-radius: 100px;
    object-fit: cover;
    border: 3px solid #313131;
}


.service-v-images-multiple {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.service-v-images-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-v-image-small {
    width: 100px;
    height: 85px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #313131;
}

.service-v-image-round {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #313131;
}

.service-v-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.service-v-description {
    font-size: 16px;
    line-height: 28px;
    color: #9E9FA0;
    font-weight: 400;
    position: relative;
}

.service-v-icon {
    position: absolute;
    top: -40px;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06BEAF 0%, #00d4c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-v-icon svg {
    width: 30px;
    height: 30px;
}


@media screen and (max-width: 1024px) {
    .partner-section {
        padding: 60px 20px;
    }

    .partner-container {
        gap: 60px;
    }

    .partner-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 60px;
    }

    .partner-image-container {
        width: 450px;
        height: 420px;
    }

    .decoration-circle-partner {
        width: 600px;
        height: 600px;
        top: -200px;
        right: -200px;
    }

    .services-vertical-title {
        font-size: 40px;
        margin-left: 200px;
    }

    .service-vertical-item {
        grid-template-columns: 300px 1fr 1fr;
        gap: 40px;
    }

    .service-v-image-main {
        max-width: 300px;
        height: 160px;
    }

    .service-v-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .partner-section {
        padding: 50px 20px;
    }

    .partner-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-left {
        order: 1;
    }

    .partner-right {
        order: 2;
    }

    .partner-title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 40px;
    }

    .partner-description {
        margin-bottom: 30px;
    }

    .partner-image-container {
        width: 100%;
        max-width: 500px;
        height: 380px;
        margin: 0 auto;
    }

    .decoration-circle-partner {
        width: 500px;
        height: 500px;
        top: -150px;
        right: -150px;
    }

    .services-vertical-section {
        padding: 60px 20px;
    }

    .services-vertical-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .services-vertical-title {
        font-size: 36px;
        margin-left: 0;
        text-align: center;
    }

    .services-vertical-list {
        gap: 40px;
    }

    .service-vertical-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .service-v-images-single,
    .service-v-images-multiple {
        width: 100%;
        justify-content: center;
    }

    .service-v-image-main {
        width: 100%;
        max-width: 100%;
        height: 200px;
    }

    .service-v-title {
        font-size: 26px;
    }
}

@media screen and (max-width: 480px) {
    .partner-section {
        padding: 40px 15px;
    }

    .partner-badge {
        font-size: 14px;
        padding: 6px 12px;
    }

    .partner-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .partner-description {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 25px;
    }

    .statistic-label {
        font-size: 16px;
    }

    .statistic-percentage {
        font-size: 20px;
    }

    .statistic-bar-container {
        height: 6px;
    }

    .partner-image-container {
        width: 100%;
        height: 300px;
    }

    .decoration-circle-partner {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
    }

    .services-vertical-section {
        padding: 40px 15px;
    }

    .services-vertical-badge {
        font-size: 14px;
        padding: 6px 12px;
    }

    .services-vertical-header {
        margin-bottom: 30px;
    }

    .services-vertical-title {
        font-size: 28px;
    }

    .services-vertical-list {
        gap: 30px;
    }

    .service-vertical-item {
        gap: 15px;
    }

    .service-v-image-main {
        height: 180px;
        border-radius: 50px;
    }

    .service-v-images-multiple {
        flex-direction: column;
        align-items: center;
    }

    .service-v-images-stack {
        flex-direction: row;
        justify-content: center;
    }

    .service-v-image-small {
        width: 80px;
        height: 70px;
    }

    .service-v-image-round {
        width: 150px;
        height: 150px;
    }

    .service-v-title {
        font-size: 22px;
    }

    .service-v-description {
        font-size: 14px;
        line-height: 24px;
    }
}

@media screen and (max-width: 375px) {
    .partner-section {
        padding: 30px 10px;
    }

    .partner-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 25px;
    }

    .partner-description {
        font-size: 13px;
        line-height: 24px;
    }

    .statistic-label {
        font-size: 14px;
    }

    .statistic-percentage {
        font-size: 18px;
    }

    .partner-image-container {
        height: 250px;
    }

    .decoration-circle-partner {
        width: 350px;
        height: 350px;
        top: -80px;
        right: -80px;
    }

    .services-vertical-section {
        padding: 30px 10px;
    }

    .services-vertical-title {
        font-size: 24px;
    }

    .services-vertical-list {
        gap: 25px;
    }

    .service-v-image-main {
        height: 160px;
        border-radius: 40px;
    }

    .service-v-image-small {
        width: 70px;
        height: 60px;
    }

    .service-v-image-round {
        width: 130px;
        height: 130px;
    }

    .service-v-title {
        font-size: 20px;
    }

    .service-v-description {
        font-size: 13px;
        line-height: 22px;
    }
}