/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-swiper {
    height: 100%;
    cursor: default !important;
}

.swiper-slide {
    cursor: default !important;
}

.hero-slide {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    margin-top: 11%;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-white);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 30px;
    line-height: 1.5;
    width: 60%;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--color-button-primary);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: var(--color-button-secondary);
    /* transform: translateY(-2px); */
    color: var(--color-white);
}

.hero-button-icon {
    width: 20px;
    height: 20px;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 55px !important;
    /* left: 50%;
    transform: translateX(-50%); */
}

.swiper-pagination-bullet {
    width: 25px !important;
    height: 3px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    border-radius: 0 !important;
    outline: none !important;
    /* Убираем рамку фокуса */
    border: none !important;
    cursor: pointer !important;
}

.swiper-pagination-bullet:focus {
    outline: none !important;
    box-shadow: none !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-button-primary) !important;
}

/* Hero Features */
.hero-features {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    /* background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); */
    padding: 20px 0;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
    /* gap: 20px; */
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.feature-item:not(:first-child) {
    padding-left: 20px;
    border-left: 1px solid var(--color-border);
}

.feature-item img {
    /* width: 40px; */
    height: 60px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 1366px) {
    .hero-title {
        font-size: 44px;
    }

    .feature-item span {
        font-size: 13px;
    }

    .feature-item img {
        height: 52px;
    }

    .swiper-pagination {
        bottom: 35px !important;
    }

    .hero-features {
        bottom: 65px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 15px;
        width: 70%;
    }

    .feature-item span {
        font-size: 12px;
    }

    .feature-item img {
        height: 48px;
    }

    .swiper-pagination {
        bottom: 40px !important;
    }

    .hero-features {
        bottom: 60px;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 991px) {
    .feature-item:not(:first-child) {
        padding-left: 15px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 37px;
    }

    .feature-item span {
        font-size: 11px;
    }
}

@media (max-width: 820px) {
    .feature-item span {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4vw;
    }

    .hero-subtitle {
        font-size: 2.1vw;
        width: 80%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
        padding-top: 15px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        width: 90%;
        padding-left: 0 !important;
        border-left: none !important;
    }

    .feature-item img {
        width: 30px;
        height: 30px;
    }

    .feature-item span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        margin-top: 20%;
    }
}

@media (max-width: 480px) {
    .hero-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media screen and (max-width: 430px) {
    .hero-content {
        margin-top: 35%;
    }

    .hero-title {
        font-size: 4.5vw;
    }

    .hero-subtitle {
        font-size: 2.5vw;
        width: 90%;
    }

    .hero-features {
        bottom: 12%;
    }

    .swiper-pagination {
        bottom: 11% !important;
    }
}

@media (max-width: 375px) {}