.flow-section {
    padding: 140px 24px;
    background: #FFFFFF;
    position: relative;
}

.flow-container {
    max-width: 1200px;
    margin: 0 auto;
}

.flow-header {
    text-align: center;
    margin-bottom: 80px;
}

.flow-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: var(--h-dark);
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.flow-header p {
    color: var(--h-muted);
    font-size: 18px;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.flow-step {
    position: relative;
    padding: 32px;
    background: #FAFBFF;
    border-radius: 20px;
    border: 1px solid rgba(93, 138, 254, 0.05);
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 14px;
    color: var(--h-blue);
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(93, 138, 254, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.flow-step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--h-dark);
    margin-bottom: 12px;
}

.flow-step p {
    font-size: 15px;
    color: var(--h-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .flow-section {
        padding: 100px 24px;
    }

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .flow-header {
        margin-bottom: 50px;
    }
}