/* Hemi Hero Section */
.hemi-hero {
    min-height: 50vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hemi-hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1s ease-out;
    z-index: 10;
    position: relative;
}

.hemi-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff6b35, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hemi-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    color: #fff;
}

/* Hemi Content Section */
.hemi-content {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

/* Intro Section */
.hemi-intro {
    max-width: 1000px;
    margin: 0 auto 6rem;
    text-align: center;
}

.hemi-intro h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 900;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.hemi-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

/* Why It Matters Section */
.hemi-why-matters {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 4rem;
}

.hemi-why-matters h2 {
    font-size: 2.2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.why-intro {
    font-size: 1.1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.list-item i {
    color: #ff6b35;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* CTA Section */
.hemi-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 20px;
}

.hemi-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
}

.hemi-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

/* Animations */
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hemi-hero h1 {
        font-size: 2.5rem;
    }

    .hemi-hero p {
        font-size: 1.2rem;
    }

    .hemi-intro h2 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .hemi-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .benefit-item {
        padding: 2rem;
    }

    .hemi-why-matters {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .hemi-why-matters h2 {
        font-size: 1.6rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .list-item {
        font-size: 0.95rem;
    }

    .hemi-cta {
        padding: 2.5rem 1.5rem;
    }

    .hemi-cta h2 {
        font-size: 1.8rem;
    }

    .hemi-cta p {
        font-size: 1rem;
    }
}