.djm-proces-page {
    background-color: var(--gl-bg, #F5F1E4);
}

.proces-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.djm-proces-page .inw-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: -100px; /* offset fixed header */
}
.djm-proces-page .inw-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.djm-proces-page .inw-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
}
.djm-proces-page .inw-hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

/* STEPS */
.proces-steps-section {
    padding: 100px 0;
}
.proces-steps-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.proces-step {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media(min-width: 768px) {
    .proces-step {
        flex-direction: row;
        gap: 50px;
    }
}
.proces-step-number {
    flex-shrink: 0;
}
.proces-step-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--gl-gold, #9D7539);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
}
.proces-step-content {
    flex: 1;
}
.proces-step-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gl-text, #27272a); /* dark zinc */
    margin-bottom: 20px;
}
.proces-step-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a; /* text-zinc-700 */
}

/* CTA */
.proces-cta-section {
    padding: 20px 0 100px;
}
.proces-cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--gl-gold, #9D7539);
}
.proces-cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gl-text, #474747);
    margin-top: 0;
    margin-bottom: 30px;
}
.proces-cta-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}
.proces-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gl-gold, #9D7539);
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: background 0.3s ease;
}
.proces-cta-btn:hover {
    background: var(--gl-gold-hover, #b08a4f);
    color: #ffffff !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .djm-proces-page .inw-hero-title {
        font-size: 2.5rem;
    }
    .proces-steps-list {
        gap: 60px;
    }
    .proces-step-title {
        font-size: 1.5rem;
    }
}
