.automart-features,
.automart-features * {
    box-sizing: border-box;
}

.automart-features {
    --automart-features-accent: #ff6b22;
    --automart-features-heading: #171b25;
    --automart-features-text: #555b67;
    --automart-features-border: #e5e5e5;
    --automart-features-soft: #f6f6f6;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--automart-features-heading);
}

.automart-features::before,
.automart-features::after {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.automart-features__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.automart-features__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

.automart-features__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #8a8a8a;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.automart-features__eyebrow::before {
    width: 9px;
    height: 9px;
    border: 2px dotted var(--automart-features-accent);
    border-radius: 50%;
    content: "";
}

.automart-features__title {
    max-width: 720px;
    margin: 0 auto;
    color: var(--automart-features-heading);
    font-size: clamp(36px, 3.15vw, 50px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
}

.automart-features__title-accent {
    color: var(--automart-features-accent);
}

.automart-features__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.automart-features__card {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
}

.automart-features__card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--automart-features-border);
    border-radius: 30px;
    background: #ffffff;
}

article.automart-features__card:hover .automart-features__card-description {
    color: white;
}

article.automart-features__card:hover .automart-features__card-body::before {
    height: 100%;
}

article.automart-features__card:hover .automart-features__icon svg {
    transform: rotateY(180deg);
}

.automart-features__card:hover::before {
    background-color: var(--uicolor);
}

.automart-features__card::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: #f3f3f3;
    clip-path: polygon(0 0, 100% 0, 0% 100%);
    content: "";
    transition: 0.3s all ease;
}

.automart-features__card-head {
    padding: 39px 39px 50px;
}

.automart-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--automart-features-soft);
    color: var(--automart-features-accent);
    font-size: 36px;
    line-height: 1;
}

.automart-features__icon svg,
.automart-features__icon i,
.automart-features__icon span {
    display: block;
    width: 68px;
    height: 78px;
    color: inherit;
    font-size: 34px;
    line-height: 38px;
    transition: 0.6s all ease;
}

.automart-features__icon svg g, .automart-features__icon svg path {
    fill: var(--uicolor);
}

.automart-features__icon-image {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.automart-features__card-title {
    max-width: 330px;
    margin: 24px 0 0;
    color: var(--automart-features-heading);
    font-size: 25px;
    font-weight: 500;
}

.automart-features__card-body {
    padding: 26px 39px 28px;
    background: var(--automart-features-soft);
    position: relative;
}

.automart-features__card-body::before {
    background-color: var(--uicolor2);
    border-radius: 20px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: 0;
    transition: all 300ms ease;
}

.automart-features__card-description {
    color: var(--secondarytext);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    z-index: 2;
    position: relative;
    transition: all 300ms ease;
}

.automart-features__card-description > :first-child {
    margin-top: 0;
}

.automart-features__card-description > :last-child {
    margin-bottom: 0;
}

.automart-features__statistic:last-child {
    border-left: none;
}

@media (max-width: 1100px) {
    .automart-features__card {
        flex-basis: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .automart-features__statistics {
        gap: 48px 0;
        text-align: center;
        align-items: center;
    }

    .automart-features__statistic {
        flex-basis: 50%;
        max-width: 50%;
    }

    .automart-features__statistic,
    .automart-features__statistic:first-child,
    .automart-features__statistic:last-child {
        padding: 0 45px;
    }

    .automart-features__statistic:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .automart-features__statistic:nth-child(even) {
        padding-right: 0;
        border-left: 1px solid var(--automart-features-border);
    }
}

@media (max-width: 767px) {

    .automart-features--mobile-hidden {
        display: none;
    }

    .automart-features::before {
        top: -360px;
        right: -275px;
        width: 560px;
        height: 560px;
    }

    .automart-features::after {
        display: none;
    }

    .automart-features__eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .automart-features__title {
        font-size: 36px;
        line-height: 1.2;
    }

    .automart-features__cards {
        margin-top: 5px;
    }

.automart-features__header {
    padding: 0;
}

    .automart-features__card {
        flex-basis: 100%;
        max-width: 100%;
        min-height: 0;
        border-radius: 24px;
    }

.automart-features__icon {
    width: 50px;
    height: 50px;
}

.automart-features__icon svg {
    width: 40px;
    height: 40px;
}

    .automart-features__card-head {
        min-height: 0;
        padding: 12px 15px 10px;
    }

    .automart-features__card-body {
        min-height: 0;
        padding: 6px 19px 8px;
    }

.automart-features__card-description {
    font-size: 14px;
}

    .automart-features__card-title {
        font-size: 16px;
        margin-top: 10px;
    }

    .automart-features__statistics {
        gap: 0;
        margin-top: 65px;
    }

    .automart-features__statistic,
    .automart-features__statistic:first-child,
    .automart-features__statistic:last-child,
    .automart-features__statistic:nth-child(odd),
    .automart-features__statistic:nth-child(even) {
        flex-basis: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 31px 0;
        border-left: 0;
    }

    .automart-features__statistic:first-child {
        padding-top: 0;
    }

    .automart-features__statistic + .automart-features__statistic {
        border-top: 1px solid var(--automart-features-border);
    }

    .automart-features__statistic-label {
        white-space: normal;
    }

    .automart-features__statistic-value {
        font-size: 60px;
    }
}