.hero {
    padding: 120px 0;
}

.hero_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.hero_badge {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    
}

.hero_title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero_title span {
    color: #7c3aed;
}

.hero_description {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero_buttons {
    display: flex;
    gap: 1rem;
}

.hero_image{
    width: 100%;
    height: auto;
}

.hero_image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    max-height: 520px;
    object-fit: cover;
    object-position: 0 15%;
}

@media (max-width:1024px){

.hero_container{
gap:3rem;
}

.hero_title{
font-size:2.6rem;
}

.hero{
padding:100px 0;
}

}

@media (max-width:768px){

.hero_container{
grid-template-columns:1fr;
gap:2.5rem;
text-align:center;
}

.hero_description{
margin:auto;
margin-bottom:2rem;
}

.hero_buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero_title{
font-size:2.3rem;
}

.hero_image img{
max-height:420px;
}

}

@media (max-width:480px){

.hero{
padding:80px 0;
}

.hero_title{
font-size:2rem;
}

.hero_badge{
font-size:0.7rem;
}

.hero_buttons{
flex-direction:column;
align-items:center;
}

.hero_buttons a{
width:100%;
max-width:240px;
}

}