.hero {
    background: var(--dark);
    padding: 4rem 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3rem) !important;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    color: var(--gray-300);
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.class-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.category {
    background: var(--gray-800);
    padding: clamp(0.75rem, 2vw, 1rem);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
}

.category i {
    color: var(--primary);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
    display: block;
}

.category span {
    color: var(--light);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    flex: 1;
    min-width: 200px;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1rem, 3vw, 2rem);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    border-radius: var(--border-radius-full);
    font-size: clamp(0.7rem, 1.5vw, 0.75rem);
    margin-bottom: 0.5rem;
}

.overlay-content h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: var(--gray-300);
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    margin: 0;
}

@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .class-categories {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-content {
        margin-top: 3rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .classes-tabs {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .class-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}