/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}
.hero {
    position: relative;
    background: url('../img/desktop-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 0, 40, 0.3);
}
.header {
    position: relative;
    z-index: 2;
    padding: 20px 80px;
}
.logo {
    height: 40px;
}
.content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 80px;
}
.gradient-text {
    font-size: 4rem; /* aumentato da 3rem */
    background: linear-gradient(90deg, #ff534d, #8e44fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.subtitle {
    font-size: 2rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.4;
    color: #D4CBFF;
}
.cta-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 445px;
    text-align: center;
}
.cta-box h2 {
    margin-bottom: 15px;
    font-size: 1.75rem;
    /* Gradient aggiornato per i titoli delle box */
    background: linear-gradient(90deg, #ff7158, #ffe8fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-box p {
    font-size: 1rem; /* aumentato da 0.95rem */
    margin-bottom: 25px;
    line-height: 1.4;
}
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(90deg, #5333ee, #ff534d);
    color: #fff;
    font-weight: 600;
}
.footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
}
/* Mobile Styles */
@media (max-width: 768px) {
    .hero {
        background: url('../img/mobile-bg.jpg') center/cover no-repeat;
    }
    .header {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
    }
    .content {
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }
    .gradient-text {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 30px;
    }
    .cta-group {
        flex-direction: column;
        gap: 20px;
    }
    .cta-box {
        max-width: 100%;
        padding: 20px;
    }
}