.first-taxi-hero {
    width: 100%;
    min-height: 450px;
    background-color: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* font-family: 'Segoe UI', Roboto, sans-serif; */
    color: #fff;
    position: relative;
}

/* Ограничитель контента внутри (чтобы текст не прилипал к краям на 4K) */
.first-taxi-hero__inner {
    width: 100%;
    max-width: 1400px;
    /* Максимальная ширина контента */
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

/* Левая часть с текстом */
.first-taxi-hero__content {
    flex: 1;
    z-index: 10;
    padding: 40px 0;
}

.first-taxi-hero__title {
    font-size: clamp(24px, 4vw, 42px);
    /* Адаптивный размер шрифта */
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
}

.first-taxi-hero__badge {
    display: inline-block;
    background: linear-gradient(90deg, #d4a017, #f1c40f);
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: clamp(14px, 2vw, 20px);
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2);
}

.first-taxi-hero__info {
    font-size: 14px;
	font-weight: 400;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.first-taxi-hero__url {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
}

.first-taxi-hero__dot {
    width: 24px;
    height: 24px;
    background: #f1c40f;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
}

/* Правая часть с визуалом */
.first-taxi-hero__visual {
    flex: 1;
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

/* Фоновое свечение */
.first-taxi-hero__glow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Картинка (авто + рука) */
.first-taxi-hero__img {
    /* Чуть больше высоты блока для эффекта вылета */
    width: auto;
    object-fit: contain;
    z-index: 5;
    position: relative;
    bottom: -20px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
}

/* Адаптация под мобильные устройства */
@media (max-width: 992px) {
    .first-taxi-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .first-taxi-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
    }

    .first-taxi-hero__visual {
        width: 100%;
        height: 350px;
        justify-content: center;
    }

    .first-taxi-hero__img {
        height: 100%;
        bottom: 0;
    }
}