/* Workflow Section - HORIZONTAL COMPACT DESIGN */
.workflow-section {
    padding: 80px 0;
    background-color: #ffffff; /* Pure white requested */
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.workflow-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-modern h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.section-header-modern h2 span {
    color: #28a745;
}

.section-header-modern p {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

/* Horizontal Steps Wrapper */
.workflow-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 20px;
}

/* Connecting Line between steps */
.workflow-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 50px; /* Middle of icons */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #eef1f4;
    z-index: 0;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Icon box on top */
.step-icon-box {
    width: 60px;
    height: 60px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon-box {
    background: #28a745;
    transform: scale(1.1);
}

.step-content {
    padding: 0 10px;
}

.step-num {
    font-size: 14px;
    font-weight: 700;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.workflow-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.workflow-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Compact Footer */
.workflow-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #28a745;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .workflow-steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .workflow-steps-wrapper::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .workflow-steps-wrapper {
        grid-template-columns: 1fr;
    }
}
