.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 0;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    padding-left: 5%;
    padding-right: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    color: #7a0c14;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 700;
    color: #000000;
    margin-bottom: 28px;
}

.hero-content h1 span {
    color: #7a0c14;
}

.hero-content p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 36px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-image-wrapper {
    height: 100%;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    overflow: hidden;
}

.hero .row {
    height: 100%;
    margin: 0;
}

.hero .col-lg-6 {
    padding: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 40px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn-discover {
        width: 100%;
        justify-content: center;
    }

    .hero-content .badge {
        font-size: 13px;
        padding: 8px 14px;
    }
}