.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    gap: 4rem;
}

.hero-content { flex: 1.2; z-index: 10; }

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--printext-orange);
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--black);
    max-width: 550px;
}

.hero-btns { display: flex; gap: 1rem; }

#hero-visual-container {
    flex: 1;
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#printer-canvas { width: 100%; height: 100%; display: block; }

@media (max-width: 768px) {
    .hero-container { 
        flex-direction: column; 
        text-align: center;
    }
    .hero-content { order: 2; }
    #hero-visual-container { 
        order: 1; 
        height: 40vh; 
        min-height: 300px; 
    }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
}