.htmc-why-choose{
    --htmc-accent:#8bc540;
    --htmc-text:#0b0b0f;
    --htmc-muted:#4e5158;
    --htmc-line:#d9d9d9;
    --htmc-card-bg:#ffffff;
    width:100%;
    background:#ffffff;
    color:var(--htmc-text);
}

.htmc-why-choose__inner{
    width:100%;
    margin:0 auto;
}

.htmc-why-choose__top{
    display:grid;
    grid-template-columns:minmax(0, .9fr) minmax(360px, 1fr);
    gap:84px;
    align-items:start;
}

.htmc-why-choose__content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.htmc-why-choose__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin:0 0 20px;
    color:var(--htmc-text);
    font-size:12px;
    font-weight:800;
    line-height:1.2;
    letter-spacing:.02em;
    text-transform:uppercase;
}

.htmc-why-choose__eyebrow::before{
    content:'';
    width:4px;
    height:4px;
    border-radius:999px;
    background:var(--htmc-accent);
}

.htmc-why-choose__heading{
    max-width:540px;
    margin:0;
    color:var(--htmc-text);
    font-size:54px;
    font-weight:700;
    line-height:1.13;
    letter-spacing:0;
}

.htmc-why-choose__description{
    margin:auto 0 30px;
    color:var(--htmc-muted);
    font-size:17px;
    font-weight:400;
    line-height:1.55;
}

.htmc-why-choose__description p{
    margin:0 0 14px;
}

.htmc-why-choose__description p:last-child{
    margin-bottom:0;
}

.htmc-why-choose__button{
    display:inline-flex;
    align-items:center;
    gap:14px;
    min-height:48px;
    padding:15px 20px;
    border-radius:999px;
    color:var(--htmc-text);
    background:#f5f5f4;
    font-size:15px;
    font-weight:600;
    line-height:1;
    text-decoration:none;
    transition:transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.htmc-why-choose__button:hover{
    color:var(--htmc-text);
    background:#eeeeec;
    transform:translateY(-3px);
    box-shadow:0 16px 28px rgba(11,11,15,.08);
}

.htmc-why-choose__button-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:999px;
    color:#ffffff;
    background:var(--htmc-accent);
    font-size:34px;
    line-height:1;
}

.htmc-why-choose__media{
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:30px;
    aspect-ratio:1.06 / 1;
    background:#f3f3f1;
}

.htmc-why-choose__media img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.htmc-why-choose__process{
    margin-top:54px;
}

.htmc-why-choose__track{
    position:relative;
    width:100%;
    height:2px;
    margin-bottom:28px;
    background:var(--htmc-line);
}

.htmc-why-choose__track-fill{
    display:block;
    width:23%;
    height:2px;
    background:var(--htmc-accent);
}

.htmc-why-choose__cards{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:42px;
}

.htmc-why-choose__card{
    position:relative;
    padding:0;
    background:var(--htmc-card-bg);
}

.htmc-why-choose__card-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.htmc-why-choose__number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    flex:0 0 45px;
    border-radius:999px;
    color:#ffffff;
    background:var(--htmc-accent);
    font-size:12px;
    font-weight:800;
    line-height:1;
}

.htmc-why-choose__card-title{
    margin:0;
    color:var(--htmc-text);
    font-size:15px;
    font-weight:700;
    line-height:1.3;
}

.htmc-why-choose__card-text{
    margin:0;
    color:var(--htmc-muted);
    font-size:14px;
    font-weight:400;
    line-height:1.5;
}

.htmc-why-choose__card.is-highlighted .htmc-why-choose__number{
    color:#ffffff;
    background:#B4004A;
    box-shadow:0 10px 20px rgba(180,0,74,.22);
}

@media(max-width:1024px){
    .htmc-why-choose{
        padding:70px 28px;
    }

    .htmc-why-choose__top{
        grid-template-columns:1fr;
        gap:42px;
    }

    .htmc-why-choose__content{
        min-height:auto;
    }

    .htmc-why-choose__heading{
        font-size:46px;
    }

    .htmc-why-choose__description{
        margin:28px 0 30px;
        max-width:760px;
    }

    .htmc-why-choose__media{
        max-height:560px;
    }

    .htmc-why-choose__cards{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:34px;
    }
}

@media(max-width:767px){
    .htmc-why-choose{
        padding:56px 18px;
    }

    .htmc-why-choose__heading{
        font-size:34px;
        line-height:1.16;
    }

    .htmc-why-choose__description{
        font-size:15px;
    }

    .htmc-why-choose__media{
        border-radius:22px;
        aspect-ratio:1 / .78;
    }

    .htmc-why-choose__process{
        margin-top:42px;
    }

    .htmc-why-choose__cards{
        grid-template-columns:1fr;
        gap:26px;
    }
}
