/* about-hero */
.about-hero {
    background: linear-gradient(90deg, #f3f3f3 0%, #ffffff 100%);
    padding: 60px 0 0 0px;
    overflow: hidden;
}

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

.about-hero__content {
    width: 100%;
    max-width: 612px;
    position: relative;
    z-index: 2;
}

.about-hero__breadcrumbs {
    margin-bottom: 20px;
}

.about-hero__breadcrumbs .breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    color: #121212;
    background: transparent;
}

.about-hero__breadcrumbs .breadcrumb a {
    color: #121212;
    text-decoration: none;
    transition: 0.3s;
}

.about-hero__breadcrumbs .breadcrumb a:hover {
    color: #d2b06b;
}

.about-hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    margin: 0 0 24px;
    text-align: left;
    padding: 0;
}

.about-hero__title span {
    color: #d2b06b;
}

.about-hero__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    color: #121212;
    margin-bottom: 40px;
    letter-spacing: -0.36px;
    font-weight: 500;
    max-width: 593px;
}

.about-hero__desc p {
    font-weight: 500;
    line-height: 1.4;
}

.about-hero__quote {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 515px;
    margin-top: 90px;
}

.about-hero__quote-icon {
    width: 49px;
    height: 43px;
    background-image: url('../images/quote-icon-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.about-hero__quote-text {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #121212;
}

.about-hero__quote-text strong {
    font-weight: 600;
}

.about-hero__image-wrap {
    width: 100%;
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-hero__image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 655px;
}

.about-hero__image img {
    height: 100%;
    width: auto;
    max-width: 660px;
    position: absolute;
    bottom: 0;
}

@media (max-width: 1280px) {
    .about-hero__image img {
        width: 100%;
        height: auto;
        right: 0;
        min-width: 500px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        background: linear-gradient(180deg, #FFFFFF 0%, #F3F3F3 100%);
    }

    .about-hero__inner {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero__content {
        margin-bottom: 24px;
        text-align: center;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero__breadcrumbs {
        display: flex;
        justify-content: center;
    }
    
    .about-hero__title {
        font-size: 24px;
        text-align: center;
        letter-spacing: -0.48px;
        line-height: 1.3;
    }
    
    .about-hero__desc {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .about-hero__quote {
        margin-top: 40px;
        align-items: center;
        text-align: center;
    }
    
    .about-hero__quote-icon svg {
        width: 32px;
    }
    
    .about-hero__quote-text {
        font-size: 14px;
    }
    
    .about-hero__image {
        height: 350px;
        display: flex;
        justify-content: center;
    }

    .about-hero__image img {
        width: auto;
        height: auto;
        position: static;
        min-width: auto;
    }
}
/* end about-hero */

/* about-services */
.about-services {
    padding: 60px 0 90px;
}

.about-services__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    text-align: center;
    max-width: 1080px;
    margin: 0 auto 56px;
    padding: 0;
}

.about-services__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 56px;
    column-gap: 30px;
}

.about-services__item {
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.about-services__item-dot {
    width: 12px;
    height: 12px;
    background-color: #2a5ea9;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-services__item-text {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #121212;
    font-weight: 400;
}

.about-services__item.last-child {
    width: calc(25% - 22.5px);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
}

.about-services__item.last-child .about-services__cta-text {
    border-left: 3px solid #2a5ea9;
    padding-left: 16px;
}

.about-services__cta-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: #121212;
}

.about-services__item-btn {
    width: calc(25% - 22.5px);
    display: flex;
    align-items: flex-end;
}

.about-services__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    background-color: #d2b06b;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    width: 100%;
}

.about-services__btn:hover {
    background-color: #c09d57;
    color: #fff;
}

@media (max-width: 991px) {
    .about-services {
        padding: 40px 0;
    }
    
    .about-services__title {
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .about-services__list {
        row-gap: 21px;
        column-gap: 21px;
        align-items: flex-start;
    }
    
    .about-services__item {
        width: calc(50% - 10.5px);
    }
    
    .about-services__item-text {
        font-size: 14px;
    }
    
    .about-services__item.last-child {
        width: 100%;
        border-left: none;
        border-top: 3px solid #2a5ea9;
        padding-left: 0;
        padding-top: 24px;
        min-height: auto;
        margin-top: 10px;
    }
    
    .about-services__item.last-child .about-services__cta-text {
        font-size: 14px;
        text-align: center;
        width: 100%;
        padding-left: 0;
        border-left: none;
    }
    
    .about-services__item-btn {
        width: 100%;
    }
    
    .about-services__btn {
        width: 100%;
    }
}
/* end about-services */
/* about-clients */
.about-clients {
    padding: 0px 0 90px 0;
}

.about-clients__inner {
    background: #f3f3f3;
    border-radius: 12px;
    padding: 56px 48px 0 64px;
    display: grid;
    grid-template-columns: 454px 1fr;
    grid-template-areas:
        "chart text"
        "chart geo";
    column-gap: 70px;
    overflow: hidden;
}

.about-clients__chart {
    grid-area: chart;
    position: relative;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -40px
}

.about-clients__chart img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-clients__text {
    grid-area: text;
    max-width: 510px;
}

.about-clients__geo {
    grid-area: geo;
    align-self: start;
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.about-clients__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    margin: 0 0 24px;
    padding: 0;
    text-align: left;
}

.about-clients__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-clients__geo {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    margin-top: auto;
    padding-bottom: 64px;
    flex-wrap: wrap;
}

.about-clients__geo-title {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #121212;
    margin: 0;
    width: 130px;
    flex-shrink: 0;
    text-align: left;
    padding: 0;
}

.about-clients__geo-list {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.about-clients__geo-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-clients__geo-icon {
    width: 27px;
    height: 38px;
    flex-shrink: 0;
    background-image: url('../images/pin.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.about-clients__geo-icon svg {
    width: 100%;
    height: 100%;
}

.about-clients__geo-text {
    display: flex;
    flex-direction: column;
}

.about-clients__geo-percent {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #2a5ea9;
}

.about-clients__geo-name {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
}

@media (max-width: 991px) {
    .about-clients__title {
        text-align: center;
    }

    .about-clients__inner {
        padding: 50px 30px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "chart"
            "geo";
        row-gap: 32px;
        column-gap: 0;
        justify-items: center;
    }
    
    .about-clients__text {
        align-self: center;
        padding-bottom: 0;
        max-width: 100%;
    }
    
    .about-clients__geo {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        gap: 16px;
    }
    
    .about-clients__geo-title {
        width: auto;
        text-align: center;
    }
    
    .about-clients__geo-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }
    
    .about-clients__geo-item {
        gap: 8px;
        justify-content: center;
    }
    
    .about-clients__geo-percent {
        font-size: 16px;
    }
    
    .about-clients__geo-name {
        font-size: 12px;
    }

    .about-clients__chart {
        margin-bottom: 0;
        max-width: 355px;
    }
}

@media (max-width: 767px) {
    .about-clients {
        padding: 40px 0;
    }
    
    .about-clients__inner {
        padding: 40px 10px;
    }
    
    .about-clients__chart {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
    
    .about-clients__title {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.2;
    }
    
    .about-clients__geo-title {
        margin-bottom: 16px;
    }
    
    .about-clients__geo-list {
        gap: 5px;
    }
    
    .about-clients__geo-icon {
        width: 20px;
        height: 28px;
    }
}
/* about-invest */
.about-invest {
    padding: 0px 0 0 0;
}

.about-invest__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    text-align: center;
    margin: 0 0 46px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

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

.about-invest__content {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-invest__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-invest__subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.48px;
    color: #121212;
}

.about-invest__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
}

.about-invest__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    background-color: #d2b06b;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    width: fit-content;
}

.about-invest__btn:hover {
    background-color: #c09d57;
    color: #fff;
}

.about-invest__image {
    width: 100%;
    max-width: 569px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-invest__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .about-invest__inner {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }
    
    .about-invest__content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-invest {
        padding: 40px 0;
    }
    
    .about-invest__title {
        font-size: 24px;
        letter-spacing: -0.48px;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    
    .about-invest__inner {
        gap: 24px;
    }
    
    .about-invest__text {
        gap: 8px;
    }
    
    .about-invest__subtitle {
        font-size: 14px;
        font-weight: 600;
    }
    
    .about-invest__desc {
        font-size: 14px;
    }
    
    .about-invest__btn {
        width: 100%;
    }
    
    .about-invest__image {
        max-width: 355px;
        justify-content: center;
    }
}
/* about-work */
.about-work {
    padding: 90px 0;
}

.about-work__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    text-align: center;
    margin: 0 0 50px;
}

.about-work__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.about-work__step {
    display: inline-flex;
    align-items: center;
    background-color: #2a5ea9;
    border-radius: 40px;
    padding: 12px 24px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
}

.about-work__step-num {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.about-work__step-sep {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    font-weight: 400;
}

.about-work__step-text {
    font-weight: 500;
}

.about-work__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-work__keywords {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-shrink: 0;
}

.about-work__keyword {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #d2b06b;
    line-height: 1.2;
    transition: 0.3s;
}

.about-work__keyword:hover {
    transform: translateX(30px);
}

.about-work__keyword-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url('../images/arrow-kurly.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.about-work__desc {
    max-width: 558px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #121212;
}

.about-work__desc-p1 {
    font-weight: 400;
}

.about-work__desc-p2 {
    font-weight: 400;
}

.about-work__desc-p2 strong {
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-work__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .about-work__keywords {
        order: 2;
    }
    
    .about-work__desc {
        order: 1;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .about-work {
        padding: 50px 0;
    }
    
    .about-work__title {
        font-size: 30px;
        letter-spacing: -0.6px;
        margin-bottom: 30px;
    }
    
    .about-work__steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .about-work__step {
        justify-content: center;
        padding: 6px 20px;
        min-height: 40px;
    }
    
    .about-work__keyword {
        font-size: 24px;
        gap: 12px;
    }
    
    .about-work__desc {
        font-size: 14px;
    }
}
/* end about-work */

/* about-vacancies */
.about-vacancies {
    padding: 90px 0 64px;
    background-color: #f3f3f3;
}

.about-vacancies__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 273px) minmax(0, 362px);
    gap: 55px;
    align-items: start;
    min-height: 332px;
    margin: 0 auto;
}

.about-vacancies__content {
    padding-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-vacancies__title {
    margin: 0 0 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    padding: 0;
    text-align: left;
}

.about-vacancies__subtitle {
    max-width: 379px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #121212;
}

.about-vacancies__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 119px;
    width: max-content;
    height: 50px;
    padding: 0 24px 2px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    text-decoration: none;
    background-color: #d2b06b;
    border-radius: 6px;
    margin-top: auto;
    transition: 0.3s;
}

.about-vacancies__button:hover {
    color: #ffffff;
    background-color: #c09e59;
    text-decoration: none;
}

.about-vacancies__button--mobile {
    display: none;
}

.about-vacancies__badge {
    display: flex;
    justify-content: center;
    margin-top: -90px;
    pointer-events: none;
}

.about-vacancies__badge img {
    display: block;
    width: 273px;
    max-width: 100%;
    height: auto;
}

.about-vacancies__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    padding-top: 10px;
}

.about-vacancies__list.about-vacancies__list--no-vacancies {
    padding: 32px;
    border: 1px solid #0000001A;
    border-radius: 8px;
    height: 100%;
    justify-content: space-between;
}

.about-vacancies__item {
    position: relative;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-vacancies__item:not(.about-vacancies__item--empty)::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #2a5ea9;
}

.about-vacancies__item-title {
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #121212;
}

.about-vacancies__item.about-vacancies__item--empty .about-vacancies__item-text {
    color: #6B6B6B;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 8px;
}

.about-vacancies__item-meta {
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
}

.about-vacancies__item-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #c09e59;
    text-decoration: none;
}

.about-vacancies__item-link:hover {
    color: #d2b06b;
    text-decoration: none;
}

.about-vacancies__item-link span {
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.about-vacancies__list.about-vacancies__list--no-vacancies .about-vacancies__item-text {
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 8px;
}

.about-vacancies__list--no-vacancies-title {
    font-weight: 600;
    line-height: 1.4;
}

.about-vacancies__list.about-vacancies__list--no-vacancies .about-vacancies__item.about-vacancies__item--no-vacancies {
    border-top: none;
    padding-top: 0;
}

.about-vacancies__list.about-vacancies__list--no-vacancies .about-vacancies__item.about-vacancies__item--no-vacancies::before {
    display: none;
}

@media (max-width: 1199px) {
    .about-vacancies__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
        gap: 40px;
    }
    
    .about-vacancies__badge {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-vacancies {
        padding: 64px 0;
    }
    
    .about-vacancies .container {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .about-vacancies__inner {
        display: flex;
        flex-direction: column;
        gap: 32px;
        min-height: 0;
    }
    
    .about-vacancies__content {
        text-align: center;
    }
    
    .about-vacancies__title {
        margin-bottom: 16px;
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.6px;
        text-align: center;
    }
    
    .about-vacancies__subtitle {
        max-width: none;
        margin-bottom: 0;
        font-size: 18px;
    }
    
    .about-vacancies__list {
        gap: 32px;
        padding-top: 0;
    }
    
    .about-vacancies__item-title {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0;
    }
    
    .about-vacancies__item-meta {
        font-size: 14px;
    }
    
    .about-vacancies__button--desktop {
        display: none;
    }
    
    .about-vacancies__button--mobile {
        display: flex;
        width: 100%;
    }
}
/* end about-vacancies */

/* about-better */
.about-better {
    padding: 0px 0 90px;
}

.about-better__inner {
    background: #f3f3f3;
    border-radius: 12px;
    padding: 64px 35px 48px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 527px;
}

.about-better__title {
    max-width: 411px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.48px;
    color: #121212;
    z-index: 2;
    align-self: flex-start;
}

.about-better__title span {
    color: #d2b06b;
}

.about-better__text-block {
    max-width: 326px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.about-better__name {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #121212;
}

.about-better__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
}

.about-better__image-wrap {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 358px;
    height: 495px;
    z-index: 1;
}

.about-better__image {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-better__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.about-better__badge {
    position: absolute;
    left: -104px;
    bottom: 68px;
    background: #2a5ea9;
    border-radius: 8px;
    padding: 16px;
    width: 151px;
    height: 163px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    z-index: 3;
}

.about-better__badge-num {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2.4px;
}

.about-better__badge-text {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .about-better__inner {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        min-height: auto;
    }
    
    .about-better__title {
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: 20px;
        margin-bottom: 40px;
        align-self: center;
    }
    
    .about-better__image-wrap {
        position: relative;
        left: 0;
        transform: none;
        bottom: 0;
        width: 100%;
        max-width: 320px;
        height: 440px;
        margin-bottom: 30px;
    }

    /* Градиент внизу, чтобы картинка мягко уходила в фон (особенно на мобильных) */
    .about-better__image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 25%;
        background: linear-gradient(180deg, rgba(243, 243, 243, 0) 0%, #f3f3f3 100%);
        pointer-events: none;
    }
    
    .about-better__badge {
        left: -10px;
        bottom: 20px;
        height: 140px;
    }
    
    .about-better__text-block {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .about-better {
        padding: 40px 0;
    }
    
    .about-better__title {
        font-size: 18px;
    }
    
    .about-better__image-wrap {
        max-width: 250px;
        height: 347px;
    }
    
    .about-better__badge {
        left: -15px;
        bottom: 10px;
        width: 130px;
        height: 140px;
    }
    
    .about-better__badge-num {
        font-size: 50px;
    }
    
    .about-better__badge-text {
        font-size: 14px;
    }
    
    .about-better__name,
    .about-better__desc {
        font-size: 14px;
    }
}
/* about-principles */
.about-principles {
    padding: 90px 0;
    background: #11346d;
    overflow: hidden;
    background-image: url('../images/bg-waves.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-principles__inner {
    display: flex;
    align-items: stretch;
    min-height: 446px;
    padding-left: calc((100vw - 1170px) / 2 + 15px); /* Автоматический левый отступ (как у container) */
}

/* На экранах больше ширины контейнера отступ нужно вычислять */
@media (min-width: 1200px) {
    .about-principles__inner {
        padding-left: calc((100vw - 1170px) / 2 + 15px);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .about-principles__inner {
        padding-left: calc((100vw - 970px) / 2 + 15px);
    }
}

.about-principles__header {
    width: 302px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 30px;
    position: relative;
}

.about-principles__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #ffffff;
    margin: 0 0 18px;
    text-align: left;
    padding: 0;
}

.about-principles__line {
    width: 48px;
    height: 3px;
    background-color: #d2b06b;
    margin-bottom: 18px;
}

.about-principles__subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #829fce;
    margin: 0;
}

.about-principles__nav {
    display: flex;
    gap: 10px;
}

.about-principles__nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #d2b06b;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.about-principles__nav-btn::before {
    content: '';
    width: 11px;
    height: 20px;
    background-image: url('../images/chevron-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s;
}

.about-principles__nav-btn:hover {
    background-color: #d2b06b;
}

.about-principles__nav-btn:hover::before {
    filter: brightness(0) invert(1);
}

.about-principles__nav-btn.about-principles__nav-prev::before {
    transform: rotate(180deg);
}

.about-principles__slider-wrap {
    flex: 1;
    min-width: 0; /* Важно для Owl Carousel внутри Flex */
}

.about-principles__carousel .owl-stage {
    display: flex;
}

.about-principles__card {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    padding-left: 30px;
    border-left: 1px solid #FFFFFF1A;
}

.about-principles__card-num {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.56px;
    color: #d2b06b;
}

.about-principles__card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-principles__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.56px;
    color: #d2b06b;
}

.about-principles__card-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
}

/* Скрываем дефолтные стрелки и точки Owl Carousel */
.about-principles__carousel .owl-nav,
.about-principles__carousel .owl-dots {
    display: none !important;
}
/* end about-principles */
/* about-assets */
.about-assets {
    padding: 0 0px 90px;
}

.about-assets__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 896px;
    margin: 0 auto 40px;
}

.about-assets__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    margin: 0;
    padding: 0;
}

.about-assets__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
}

.about-assets__grid {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.about-assets__card {
    background-color: #f3f3f3;
    border-top: 3px solid #2a5ea9;
    border-radius: 8px;
    width: calc(25% - 12px);
    min-height: 345px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-assets__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.about-assets__card-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
}

.about-assets__card-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
}

.about-assets__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #121212;
}

.about-assets__card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s;
}

.about-assets__card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about-assets__card:nth-child(1) .about-assets__card-image {
    width: 142px;
    height: 189px;
    background-image: url('../images/book-assets.png');
}

.about-assets__card:nth-child(1):hover .about-assets__card-image {
    background-image: url('../images/book-assets-red.png');
}

.about-assets__card:nth-child(2) {
    padding-bottom: 0px;
}

.about-assets__card:nth-child(2) .about-assets__card-image {
    background-image: url('../images/robot.png');
    width: 170px;
    height: 240px;
}

.about-assets__card:nth-child(3) .about-assets__card-image {
    background-image: url('../images/darts.png');
    width: 208px;
    height: 160px;
}

.about-assets__card:nth-child(4) .about-assets__card-image {
    background-image: url('../images/ceo.png');
    width: 226px;
    height: 164px;
}

/* Кнопка по умолчанию скрыта (уведена вниз) */
.about-assets__card-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    background-color: #d2b06b;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    max-width: 242px;
    width: 100%;
    transition: all 0.3s ease;
}

/* Показываем кнопку при наведении на карточку */
.about-assets__card:hover .about-assets__card-btn {
    bottom: 16px;
    opacity: 1;
    visibility: visible;
}

.about-assets__card-btn:hover {
    background-color: #c09d57;
    color: #fff;
}

/* Адаптив */
@media (max-width: 1199px) {
    .about-assets__grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-assets__card {
        width: calc(50% - 8px);
    }
}

@media (max-width: 991px) {
    .about-principles__inner {
        flex-direction: column;
        padding: 0px;
    }

    .about-principles__slider-wrap {
        padding-left: 24px;
    }

    .about-principles__nav {
        display: none;
    }

    .about-principles__header {
        margin-bottom: 30px;
        margin-right: 0;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-principles__subtitle {
        max-width: 355px;
    }

    .about-principles__line {
        display: none;
    }

    .about-principles__card {
        gap: 16px;
    }

    .about-principles__card-num {
        font-size: 24px;
    }

    .about-principles__card-title {
        font-size: 24px;
    }

    .about-principles__card-desc {
        font-size: 14px;
    }

    .about-principles__title {
        font-size: 30px;
        text-align: center;
    }
}
/* end about-assets */
/* about-team */
.about-team {
    padding: 60px 0 00px;
    position: relative;
    overflow: hidden;
}

.about-team__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.about-team__header {
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.about-team__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    margin: 0 0 24px;
    max-width: 600px;
    padding: 0;
}

.about-team__desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.about-team__desc-bold {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #121212;
    max-width: 765px;
    margin: 0;
}

.about-team__desc p:not(.about-team__desc-bold) {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
    margin: 0;
}

.about-team__avatars {
    display: flex;
    justify-content: center;
}

.about-team__avatars-list {
    display: flex;
    align-items: center;
}

.about-team__avatar-img,
.about-team__avatar-plus {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: -15px;
    position: relative;
    border: 3px solid #fff; /* Чтобы перекрывать друг друга с белой рамкой, как в макете */
    overflow: hidden;
    background: #e0e0e0;
}

.about-team__avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team__avatar-plus {
    background-color: #2a5ea9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.4px;
    z-index: 5;
    margin-right: 0;
}

.about-team__avatar-img:nth-child(1) { z-index: 1; }
.about-team__avatar-img:nth-child(2) { z-index: 2; }
.about-team__avatar-img:nth-child(3) { z-index: 3; }
.about-team__avatar-img:nth-child(4) { z-index: 4; }

.about-team__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-team__member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: calc(33.333% - 20px);
    position: relative;
}

.about-team__member-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.about-team__member-name {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #121212;
}

.about-team__member-pos {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #121212;
}

.about-team__member-image {
    width: 100%;
    max-width: 320px;
    height: 420px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-team__member-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
}

/* Эллипс на фоне */
.about-team__decor {
    position: absolute;
    width: 315px;
    height: 315px;
    border: 2px solid #d2b06b;
    background-color: #d2b06b;
    border-radius: 50%;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .about-team__list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .about-team__member {
        width: 100%;
        max-width: 360px;
    }
    
    .about-team__decor {
        width: 182px;
        height: 182px;
    }
}

@media (max-width: 767px) {
    .about-team {
        padding: 40px 0;
    }
    
    .about-team__title {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.2;
    }

    .about-team__header {
        margin-bottom: 40px;
    }

    .about-team__desc {
        margin-bottom: 24px;
    }
    
    .about-team__desc-bold {
        font-size: 18px;
    }
    
    .about-team__desc p:not(.about-team__desc-bold) {
        font-size: 14px;
    }
    
    .about-team__avatar-img,
    .about-team__avatar-plus {
        width: 80px;
        height: 80px;
    }
    
    .about-team__member-image {
        height: 250px;
        max-width: 190px;
        position: relative;
    }

    .about-team__member-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, #FFFFFF 100%);
        z-index: 1;
    }
    
    .about-team__member-name {
        font-size: 18px;
    }
    
    .about-team__member-pos {
        font-size: 14px;
    }

    .about-team__member {
        gap: 8px;
    }

    .about-team__member-text {
        gap: 0;
    }
}
/* end about-team */
/* about-advantages */
.about-advantages {
    padding: 90px 0;
}

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

.about-advantages__title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.26px;
    color: #121212;
    text-align: center;
    margin: 0 0 40px;
    max-width: 900px;
}

.about-advantages__table {
    width: 100%;
    max-width: 1142px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-advantages__thead {
    display: flex;
    gap: 30px;
}

.about-advantages__th {
    flex: 1;
    background-color: #2a5ea9;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #fff;
    text-align: center;
}

.about-advantages__list {
    display: flex;
    flex-direction: column;
}

.about-advantages__item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-advantages__col--left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    flex-shrink: 0;
}

.about-advantages__name {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: #121212;
    width: 200px;
    flex-shrink: 0;
}

.about-advantages__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #6b6b6b;
    flex: 1;
}

.about-advantages__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 16px;
    background-image: url("../images/arrow-kurly.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.about-advantages__col--right {
    flex: 1;
}

.about-advantages__col--right p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #121212;
}

.about-advantages__benefit-bold {
    font-weight: 600;
}

.about-advantages__benefit-text {
    font-weight: 400;
}

@media (max-width: 991px) {
    .about-advantages__col--left {
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .about-advantages {
        padding: 40px 0;
    }
    
    .about-advantages__title {
        font-size: 30px;
        letter-spacing: -0.6px;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    
    .about-advantages__table {
        gap: 0;
    }
    
    .about-advantages__thead {
        display: none;
    }
    
    .about-advantages__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 0;
    }
    
    .about-advantages__item:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .about-advantages__col--left {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .about-advantages__name {
        width: 100%;
        color: #c09e59; /* Цвет заголовка на мобилке из дизайна */
    }
    
    .about-advantages__desc {
        width: 100%;
    }
    
    .about-advantages__arrow {
        display: none;
    }
    
    .about-advantages__col--right p {
        font-size: 14px;
    }
}
/* end about-advantages */
