@charset "UTF-8";
/* ============================================================
   WHY — Почему нас выбирают
   ============================================================ */

.why {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

/* Шапка */
.why__head {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.why__head-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-bottom: 45px;
    width: 100%;
    max-width: calc(1500px + var(--section-padding-x) * 2);
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    margin-top: 0 auto;
}

.why__title {
    background: var(--gradient-svetlyj);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: var(--font-bebas);
    font-size: 50px;
    line-height: 54px;
    font-weight: 700;
    align-self: stretch;
    margin: 0;
}

.why__subtitle {
    background: var(--gradient-svetlyj);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: var(--font-myriad);
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    align-self: stretch;
    margin: 0;
}

/* Карточки */
.why__cards {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-top: -1px;
    width: 100%;
}

.why__card {
    flex: 1;
    border: 1px solid var(--linii);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
   
}

.why__card + .why__card {
    margin-left: -1px;
}

/* Свечение при ховере */

.why__card:hover {
    background: #151515 url('/wp-content/uploads/2026/05/frame-hover.png') top center / 100% auto no-repeat;
}

.why__card-icon,
.why__card-text {
    position: relative;
    z-index: 1;
}

/* Иконка */
.why__card-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    object-fit: contain;
    aspect-ratio: 1;
}

/* Текст */
.why__card-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    align-self: stretch;
}

.why__card-title {
    background: var(--gradient-svetlyj);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: var(--font-bebas);
    font-size: 28px;
    line-height: 29px;
    font-weight: 700;
    align-self: stretch;
    margin: 0;
}

.why__card-desc {
    background: var(--gradient-svetlyj);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: var(--font-myriad);
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    align-self: stretch;
    margin: 0;
}

/* Адаптив */
@media (max-width: 1024px) {
    .why__cards {
        flex-wrap: wrap;
    }

    .why__card {
        flex: 0 0 calc(50% + 0px);
    }
    .why__title { font-size: clamp(28px, 4vw, 50px);}
    .why__subtitle { font-size: clamp(18px, 2vw, 20px); line-height: 117%;}
}





@media (max-width: 599px) {
    .why__cards {
        flex-direction: column;
    }

    .why__card + .why__card {
        margin-left: 0;
        margin-top: -1px;
    }

    .why__card {
        flex: 1;
        padding: 30px 20px;
    }
}
@media (max-width: 480px) {
    .why {
        padding-top: 70px;
    }
}