.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .hero-video,
.hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: -1;
}

.hero .hero-background {
    object-fit: cover;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 4rem);
    margin: 0;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 600px;
}

.trusted-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: column;
}

.avatars {
    display: flex;
    gap: 0.5rem;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .avatars {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        padding: 1rem;
    }
}
