/* Process Hero Section Styles */
#process-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    /* Taller hero as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f4f9ff;
    /* Solid light fallback, canvas covers this */
    padding: 0;
    margin-bottom: 4rem;
}

#process-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content, over base bg */
}

.process-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 2;
    pointer-events: none;
}

.process-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
    animation: fadeUp 1s ease-out;
}

.process-hero-content .eyebrow {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.process-hero-content h1 {
    font-family: 'Josefin Sans', sans-serif;
    /* Ensuring correct font */
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.process-hero-content p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #process-hero {
        min-height: 55vh;
        /* Reduced height for better mobile fit */
        margin-bottom: 2rem;
    }

    .process-hero-content {
        padding: 2rem 1.5rem;
    }

    .process-hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .process-hero-content p {
        font-size: 1rem;
    }
}