.home-hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
    border-radius: 12px;
    margin-bottom: 60px;
}

.home-hero-headline {
    font-family: var(--font-family-primary);
    font-size: 56px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-hero-subheadline {
    font-family: var(--font-family-primary);
    font-size: 24px;
    font-weight: var(--font-weight-normal);
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.home-download-button {
    margin-top: 30px;
}

.home-section-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 40px;
}

.home-configuration-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-normal);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .home-hero-headline {
        font-size: 40px;
    }
    
    .home-hero-subheadline {
        font-size: 20px;
    }
    
    .home-hero {
        padding: 60px 20px;
    }
}

