.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 80px 60px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
}

.hero-text span {
    background: linear-gradient(90deg, var(--blue-light), #4dd2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-muted);
}

.hero-btn {
    margin-top: 30px;
    padding: 14px 28px;
    background: linear-gradient(90deg, var(--blue-main), var(--blue-light));
    border: none;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--blue-light);
}

.hero-logo img {
    width: 280px;
    filter: drop-shadow(0 0 25px rgba(26,163,255,0.6));
}

@media(max-width: 900px){
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-logo {
        margin-top: 40px;
    }
}
