/* ==================== HERO (БАННЕР) ==================== */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

/* Слайдер */
.swiper-hero {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.swiper-hero .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    /* Авто справа */
    display: block;
}

.swiper-hero .swiper-pagination {
    bottom: 90px;
    left: calc((100vw - 1420px) / 2);
    display: flex;
    gap: 10px;
}

.swiper-hero .swiper-pagination-bullet {
    width: 110px;
    height: 6px;
    opacity: 0.3;
    background: #fff;
    border-radius: 0;
}

.swiper-hero .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Контент баннера */
.hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    padding-top: 60px;
    padding-left: 60px;
}

.img-sale-text {
    width: 100%;
    max-width: 500px;
    margin-bottom: 25px;
}

.hero__inner-text {
    max-width: 700px;
    color: #fff;
    text-align: left;
}

.hero__title {
    font-size: 46px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero__title b {
    font-size: 33px;
    color: #54DBDD;
}

.hero__subtitle {
    font-size: 36px;
    color: #7bc4e5;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__offer-btn {
    width: 365px;
    height: 60px;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    transition: all 0.3s;
    cursor: pointer;
}

.hero__offer-btn:hover {
    background: #fff;
    color: var(--secondary);
}


.benefits__inner {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.benefits__cards {
    display: flex;
    gap: 20px;
    flex: 1;
    max-width: 940px;
}

/* Карточки преимуществ */
.benefit-card {
    flex: 1;
    background: #F2F3F4;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--secondary);
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    margin-top: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.benefit-card-1 {
    background-image: url('../../img/benefits/benefit_1.webp');
}

.benefit-card-2 {
    background-image: url('../../img/benefits/benefit_2.webp');
}

.benefit-card-3 {
    background-image: url('../../img/benefits/benefit_3.webp');
}

/* ==================== TIMER (ТАЙМЕР) ==================== */
.hero__timer-card {
    max-width: 440px;
    width: 100%;
    background: var(--secondary);
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero__timer {
    width: 100%;
    margin-bottom: 15px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.time-count__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-count__val {
    font-size: 50px;
    line-height: 0.8;
}

.time-count__text {
    margin-top: 5px;
}

.time-count__separator {
    font-size: 50px;
    line-height: 0.8;
}

.hero__timer-btn {
    width: 100%;
    max-width: 365px;
    height: 46px;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.hero__timer-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
